diff options
-rw-r--r-- | test/CFrontend/2004-02-13-BuiltinFrameReturnAddress.c.tr | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CFrontend/2004-02-13-BuiltinFrameReturnAddress.c.tr b/test/CFrontend/2004-02-13-BuiltinFrameReturnAddress.c.tr new file mode 100644 index 0000000000..288593c5da --- /dev/null +++ b/test/CFrontend/2004-02-13-BuiltinFrameReturnAddress.c.tr @@ -0,0 +1,8 @@ +// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep 'llvm.*address' | wc -l | grep 4 + +void *test1() { + return __builtin_return_address(1); +} +void *test2() { + return __builtin_frame_address(0); +} |