hanchenye-llvm-project/llvm/test/FrontendC/2004-02-13-BuiltinFrameRetu...

9 lines
186 B
C

// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.*address | count 4
void *test1() {
return __builtin_return_address(1);
}
void *test2() {
return __builtin_frame_address(0);
}