Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[oota-llvm.git] / test / FrontendC / 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