hanchenye-llvm-project/llvm/test/FrontendC/weak_constant.c

13 lines
194 B
C

// RUN: %llvmgcc -S %s -O1 -o - | grep {ret.*123}
// Check for bug compatibility with gcc.
const int x __attribute((weak)) = 123;
int* f(void) {
return &x;
}
int g(void) {
return *f();
}