blob: 84d564a61f71906dd1e82f4f755ce33c872eb42e (
plain)
1
2
3
4
5
6
7
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]
|