Mercurial > hg > CbC > CbC_llvm
view clang/test/Sema/attr-nomerge.cpp @ 222:81f6424ef0e3 llvm-original
LLVM original branch
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 18 Jul 2021 22:10:01 +0900 |
parents | 79ff65ed7e25 |
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}}