diff options
author | Roman Divacky <rdivacky@FreeBSD.org> | 2010-01-15 15:39:40 +0000 |
---|---|---|
committer | Roman Divacky <rdivacky@FreeBSD.org> | 2010-01-15 15:39:40 +0000 |
commit | ee791dde723a2089c681d2ab6a9d4f96379d5f49 (patch) | |
tree | a6082d4d1d1e9ddaea09a6a04bb4a47da95d642d /test/CodeGen/annotate.c | |
parent | abe15e553e58165e7692c0d0842865c488ed7b45 (diff) |
Notes
Diffstat (limited to 'test/CodeGen/annotate.c')
-rw-r--r-- | test/CodeGen/annotate.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CodeGen/annotate.c b/test/CodeGen/annotate.c new file mode 100644 index 0000000000000..84d564a61f719 --- /dev/null +++ b/test/CodeGen/annotate.c @@ -0,0 +1,8 @@ +// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s + +__attribute((annotate("foo"))) char foo; +void a(char *a) { + __attribute__((annotate("bar"))) static char bar; +} + +// CHECK: @llvm.global.annotations = appending global [2 x %0] |