diff options
author | Julien Lerouge <jlerouge@apple.com> | 2011-09-09 22:41:49 +0000 |
---|---|---|
committer | Julien Lerouge <jlerouge@apple.com> | 2011-09-09 22:41:49 +0000 |
commit | 5a6b6987dcb4592427f4f3fcee9b7ce5dd3ba4fe (patch) | |
tree | 3fbd1b68c6991059043061b4e5ea6a2206f7f14e /clang/test/Sema/annotate.c | |
parent | 5bfb0e0a852533bc6b9248285503c05127d2395e (diff) | |
download | bcm5719-llvm-5a6b6987dcb4592427f4f3fcee9b7ce5dd3ba4fe.tar.gz bcm5719-llvm-5a6b6987dcb4592427f4f3fcee9b7ce5dd3ba4fe.zip |
Bring llvm.annotation* intrinsics support back to where it was in llvm-gcc: can
annotate global, local variables, struct fields, or arbitrary statements (using
the __builtin_annotation), rdar://8037476.
llvm-svn: 139423
Diffstat (limited to 'clang/test/Sema/annotate.c')
-rw-r--r-- | clang/test/Sema/annotate.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/Sema/annotate.c b/clang/test/Sema/annotate.c index 6f81491f1ff..5b2727752bb 100644 --- a/clang/test/Sema/annotate.c +++ b/clang/test/Sema/annotate.c @@ -4,4 +4,7 @@ void __attribute__((annotate("foo"))) foo(float *a) { __attribute__((annotate("bar"))) int x; __attribute__((annotate(1))) int y; // expected-error {{argument to annotate attribute was not a string literal}} __attribute__((annotate("bar", 1))) int z; // expected-error {{attribute takes one argument}} + int u = __builtin_annotation(z, (char*) 0); // expected-error {{__builtin_annotation requires a non wide string constant}} + int v = __builtin_annotation(z, (char*) L"bar"); // expected-error {{__builtin_annotation requires a non wide string constant}} + int w = __builtin_annotation(z, "foo"); } |