mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-13 00:10:37 +00:00
7 lines
130 B
C
7 lines
130 B
C
// RUN: %llvmgcc %s -c -o - | llvm-dis | grep llvm.global_ctors
|
|
|
|
void foo() __attribute__((constructor));
|
|
void foo() {
|
|
bar();
|
|
}
|