Testcase for builtin frame/return address

llvm-svn: 11436
This commit is contained in:
Chris Lattner 2004-02-14 04:06:48 +00:00
parent cd947e4b8b
commit 451f1bca6f
1 changed files with 8 additions and 0 deletions

View File

@ -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);
}