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