|
4 | 4 | // REQUIRES: plugins, examples
|
5 | 5 | //--- good_attr.cpp
|
6 | 6 | // expected-no-diagnostics
|
7 |
| -void fn1a() __attribute__((example)) {} |
8 |
| -[[example]] void fn1b() {} |
9 |
| -[[plugin::example]] void fn1c() {} |
10 |
| -void fn2() __attribute__((example("somestring", 1, 2.0))) {} |
11 |
| -// CHECK-COUNT-4: -AnnotateAttr 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} "example" |
| 7 | +void fn1a() __attribute__((example)) { |
| 8 | + __attribute__((example)) for (int i = 0; i < 9; ++i) {} |
| 9 | +} |
| 10 | +[[example]] void fn1b() { |
| 11 | + [[example]] for (int i = 0; i < 9; ++i) {} |
| 12 | +} |
| 13 | +[[plugin::example]] void fn1c() { |
| 14 | + [[plugin::example]] for (int i = 0; i < 9; ++i) {} |
| 15 | +} |
| 16 | +void fn2() __attribute__((example("somestring", 1, 2.0))) { |
| 17 | + __attribute__((example("abc", 3, 4.0))) for (int i = 0; i < 9; ++i) {} |
| 18 | +} |
| 19 | +template <int N> void template_fn() __attribute__((example("template", N))) { |
| 20 | + __attribute__((example("def", N + 1))) for (int i = 0; i < 9; ++i) {} |
| 21 | +} |
| 22 | +void fn3() { template_fn<5>(); } |
| 23 | +// CHECK: -AttributedStmt 0x{{[0-9a-z]+}} {{<line:[0-9]+:[0-9]+(, col:[0-9]+)?>}} |
| 24 | +// CHECK: -AnnotateAttr 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} "example" |
| 25 | +// CHECK: -AnnotateAttr 0x{{[0-9a-z]+}} {{<line:[0-9]+:[0-9]+(, col:[0-9]+)?>}} "example" |
| 26 | +// CHECK: -AttributedStmt 0x{{[0-9a-z]+}} {{<line:[0-9]+:[0-9]+(, col:[0-9]+)?>}} |
| 27 | +// CHECK: -AnnotateAttr 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} "example" |
| 28 | +// CHECK: -AnnotateAttr 0x{{[0-9a-z]+}} {{<line:[0-9]+:[0-9]+(, col:[0-9]+)?>}} "example" |
| 29 | +// CHECK: -AttributedStmt 0x{{[0-9a-z]+}} {{<line:[0-9]+:[0-9]+(, col:[0-9]+)?>}} |
| 30 | +// CHECK: -AnnotateAttr 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} "example" |
| 31 | +// CHECK: -AnnotateAttr 0x{{[0-9a-z]+}} {{<line:[0-9]+:[0-9]+(, col:[0-9]+)?>}} "example" |
| 32 | +// CHECK: -AttributedStmt 0x{{[0-9a-z]+}} {{<line:[0-9]+:[0-9]+(, col:[0-9]+)?>}} |
| 33 | +// CHECK: -AnnotateAttr 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} "example" |
| 34 | +// CHECK: -StringLiteral 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} 'const char[{{[0-9]+}}]' lvalue "abc" |
| 35 | +// CHECK: -IntegerLiteral 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} 'int' 3 |
| 36 | +// CHECK: -FloatingLiteral 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} 'double' 4.000000e+00 |
| 37 | +// CHECK: -AnnotateAttr 0x{{[0-9a-z]+}} {{<line:[0-9]+:[0-9]+(, col:[0-9]+)?>}} "example" |
12 | 38 | // CHECK: -StringLiteral 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} 'const char[{{[0-9]+}}]' lvalue "somestring"
|
13 | 39 | // CHECK: -IntegerLiteral 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} 'int' 1
|
14 | 40 | // CHECK: -FloatingLiteral 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} 'double' 2.000000e+00
|
| 41 | +// CHECK: -AnnotateAttr 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} Implicit "example" |
| 42 | +// CHECK: -StringLiteral 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} 'const char[{{[0-9]+}}]' lvalue "def" |
| 43 | +// CHECK: -BinaryOperator 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} 'int' '+' |
| 44 | +// CHECK: -IntegerLiteral 0x{{[0-9a-z]+}} {{<line:[0-9]+:[0-9]+(, col:[0-9]+)?>}} 'int' 5 |
| 45 | +// CHECK: -IntegerLiteral 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} 'int' 1 |
| 46 | +// CHECK: -AnnotateAttr 0x{{[0-9a-z]+}} {{<line:[0-9]+:[0-9]+(, col:[0-9]+)?>}} "example" |
| 47 | +// CHECK: -StringLiteral 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} 'const char[{{[0-9]+}}]' lvalue "template" |
| 48 | +// CHECK: -IntegerLiteral 0x{{[0-9a-z]+}} {{<col:[0-9]+(, col:[0-9]+)?>}} 'int' 5 |
15 | 49 |
|
16 | 50 | //--- bad_attr.cpp
|
17 | 51 | int var1 __attribute__((example("otherstring"))) = 1; // expected-warning {{'example' attribute only applies to functions}}
|
18 | 52 | class Example {
|
19 | 53 | void __attribute__((example)) fn3(); // expected-error {{'example' attribute only allowed at file scope}}
|
20 | 54 | };
|
21 |
| -void fn4() __attribute__((example(123))) { } // expected-error {{first argument to the 'example' attribute must be a string literal}} |
22 |
| -void fn5() __attribute__((example("a","b", 3, 4.0))) { } // expected-error {{'example' attribute only accepts at most three arguments}} |
| 55 | +void fn4() __attribute__((example(123))) { // expected-error {{first argument to the 'example' attribute must be a string literal}} |
| 56 | + __attribute__((example("somestring"))) while (true); // expected-warning {{'example' attribute only applies to for loop statements}} |
| 57 | +} |
| 58 | +void fn5() __attribute__((example("a","b", 3, 4.0))) { // expected-error {{'example' attribute only accepts at most three arguments}} |
| 59 | + __attribute__((example("a","b", 3, 4.0))) for (int i = 0; i < 10; ++i) {} // expected-error {{'example' attribute only accepts at most three arguments}} |
| 60 | +} |
0 commit comments