Reapply r121905 (automatic synthesis of @llvm.sadd.with.overflow) with a fix for...
[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 }