1 // RUN: %llvmgcc -xc %s -S -o - | grep llvm.*address | count 4 2 3 void *test1() { 4 return __builtin_return_address(1); 5 } 6 void *test2() { 7 return __builtin_frame_address(0); 8 } 9