xref: /llvm-project/clang/test/CodeGen/annotations-loc.c (revision 9114ac67a986400155b8b82013d09a9e4f48e534)
1 // RUN: %clang_cc1 -triple x86_64 -emit-llvm -o - %s | FileCheck %s '-D$CONST_AS='
2 // RUN: %clang_cc1 -triple amdgcn -emit-llvm -o - %s | FileCheck %s '-D$CONST_AS= addrspace(4)'
3 // END.
4 # 1 "t.c"
5 # 1 "<built-in>"
6 # 1 "<command-line>"
7 # 1 "t.c"
foo(void)8 int __attribute((annotate("foo"))) foo(void) { return 0; }
9 
10 // CHECK: private unnamed_addr[[$CONST_AS]] constant [4 x i8] c"t.c\00"
11 // CHECK: @llvm.global.annotations = {{.*}}, i32 1, ptr[[$CONST_AS]] null }
12