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