Mercurial > hg > CbC > CbC_llvm
view clang/test/Sema/attr-nomerge.cpp @ 221:79ff65ed7e25
LLVM12 Original
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 15 Jun 2021 19:15:29 +0900 |
parents | 0572611fdcc8 |
children | c4bab56944e8 |
line wrap: on
line source
// RUN: %clang_cc1 -verify -fsyntax-only %s void bar(); void foo() { [[clang::nomerge]] bar(); [[clang::nomerge(1, 2)]] bar(); // expected-error {{'nomerge' attribute takes no arguments}} int x; [[clang::nomerge]] x = 10; // expected-warning {{nomerge attribute is ignored because there exists no call expression inside the statement}} [[clang::nomerge]] label: bar(); // expected-error {{'nomerge' attribute only applies to functions and statements}} } [[clang::nomerge]] int f(); [[clang::nomerge]] static int i = f(); // expected-error {{'nomerge' attribute only applies to functions and statements}}