Home | History | Annotate | Download | only in FrontendC
      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 
      8