convert to filecheck.
[oota-llvm.git] / test / FrontendC / attribute_constructor.c
1 // RUN: %llvmgcc %s -c -o - | llvm-dis | grep llvm.global_ctors
2
3 void foo() __attribute__((constructor));
4 void foo() {
5   bar();
6 }