mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
794fa1f8f7
llvm-svn: 41097
9 lines
186 B
Plaintext
9 lines
186 B
Plaintext
// 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);
|
|
}
|