Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[oota-llvm.git] / test / FrontendC / 2008-03-03-CtorAttrType.c
1 // RUN: %llvmgcc %s -S -o - | grep llvm.global_ctors
2 int __attribute__((constructor)) foo(void) {
3   return 0;
4 }
5 void __attribute__((constructor)) bar(void) {}
6