• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %llvmgcc %s -S -o - | llvm-as | llvm-dis | grep llvm.annotation
2 
main()3 int main() {
4   int x = 0;
5   return __builtin_annotation(x, "annotate");
6 }
7 
8