mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-24 21:56:04 +00:00

This also ignores and deprecates the `-fdouble-square-bracket-attributes` command line flag, which seems to not be used anywhere. At least a code search exclusively found mentions of it in documentation: https://sourcegraph.com/search?q=context:global+-fdouble-square-bracket-attributes+-file:clang/*+-file:test/Sema/*+-file:test/Parser/*+-file:test/AST/*+-file:test/Preprocessor/*+-file:test/Misc/*+archived:yes&patternType=standard&sm=0&groupBy=repo RFC: https://discourse.llvm.org/t/rfc-enable-c-11-c2x-attributes-in-all-standard-modes-as-an-extension-and-remove-fdouble-square-bracket-attributes This enables `[[]]` attributes in all C and C++ language modes without warning by default. `-Wc++-extensions` does warn. GCC has enabled this extension in all C modes since GCC 10. Reviewed By: aaron.ballman, MaskRay Spies: #clang-vendors, beanz, JDevlieghere, Michael137, MaskRay, sstefan1, jplehr, cfe-commits, lldb-commits, dmgreen, jdoerfert, wenlei, wlei Differential Revision: https://reviews.llvm.org/D151683
52 lines
1.0 KiB
C
52 lines
1.0 KiB
C
// RUN: %clang_cc1 %s -fsyntax-only -verify
|
|
|
|
void g(void) {
|
|
if (1)
|
|
[[clang::likely]] {}
|
|
}
|
|
void m(void) {
|
|
[[clang::likely]] int x = 42; // expected-error {{'likely' attribute cannot be applied to a declaration}}
|
|
|
|
if (x)
|
|
[[clang::unlikely]] {}
|
|
if (x) {
|
|
[[clang::unlikely]];
|
|
}
|
|
switch (x) {
|
|
case 1:
|
|
[[clang::likely]] {}
|
|
break;
|
|
[[clang::likely]] case 2 : case 3 : {}
|
|
break;
|
|
}
|
|
|
|
do {
|
|
[[clang::unlikely]];
|
|
} while (x);
|
|
do
|
|
[[clang::unlikely]] {}
|
|
while (x);
|
|
do { // expected-note {{to match this 'do'}}
|
|
}
|
|
[[clang::unlikely]] while (x); // expected-error {{expected 'while' in do/while loop}}
|
|
for (;;)
|
|
[[clang::unlikely]] {}
|
|
for (;;) {
|
|
[[clang::unlikely]];
|
|
}
|
|
while (x)
|
|
[[clang::unlikely]] {}
|
|
while (x) {
|
|
[[clang::unlikely]];
|
|
}
|
|
|
|
if (x)
|
|
goto lbl;
|
|
|
|
// FIXME: allow the attribute on the label
|
|
[[clang::unlikely]] lbl : // expected-error {{'unlikely' attribute cannot be applied to a declaration}}
|
|
[[clang::likely]] x = x + 1;
|
|
|
|
[[clang::likely]]++ x;
|
|
}
|