1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/CFrontend/2008-02-11-AnnotateBuiltin.c
Tanya Lattner cefcef7955 Test case for annotate builtin.
llvm-svn: 46999
2008-02-12 07:46:33 +00:00

8 lines
148 B
C

// RUN: %llvmgcc %s -S -o - | llvm-as | llvm-dis | grep llvm.annotation
int main() {
int x = 0;
return __builtin_annotation(x, "annotate");
}