blob: c82c263dda198cefad46a24aed6360c49a3c73df [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | grep llvm.global_ctors
2
3void foo() __attribute__((constructor));
4void foo() {
5 bar();
6}