Test case for annotate builtin.
[oota-llvm.git] / test / CFrontend / 2008-02-11-AnnotateBuiltin.c
1 // RUN: %llvmgcc %s -S -o - | llvm-as | llvm-dis | grep llvm.annotation
2
3 int main() {
4   int x = 0;
5   return __builtin_annotation(x, "annotate");
6 }
7