blob: d8e58c4f6be702fea03e9152a1abcd78ceb2557b [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -emit-llvm < %s | grep "llvm.returnaddress"
Daniel Dunbard7d5f022009-03-24 02:24:46 +00002// RUN: clang-cc -emit-llvm < %s | grep "llvm.frameaddress"
Eli Friedman256f77e2008-05-20 08:59:34 +00003void* a(unsigned x) {
4return __builtin_return_address(0);
5}
6
7void* c(unsigned x) {
8return __builtin_frame_address(0);
9}