C++程序  |  7行  |  119 B

// RUN: %llvmgcc %s -S -o - | grep llvm.global_ctors

void foo() __attribute__((constructor));
void foo() {
  bar();
}