blob: f13b90eb9ed3f7856e1dc4ae3527147d0c8ec19c [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm < %s | grep "llvm.returnaddress"
2// RUN: %clang_cc1 -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}