mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
6 lines
130 B
C
6 lines
130 B
C
// RUN: %llvmgcc %s -c -o - | llvm-dis | grep llvm.global_ctors
|
|
|
|
void foo() __attribute__((constructor));
|
|
void foo() {
|
|
bar();
|
|
}
|