2009-09-08 23:54:48 +00:00
|
|
|
; RUN: llc < %s -march=x86 | grep {(%esp}
|
|
|
|
; RUN: llc < %s -march=x86 | grep {pushl %ebp} | count 1
|
|
|
|
; RUN: llc < %s -march=x86 | grep {popl %ebp} | count 1
|
2004-02-14 02:51:40 +00:00
|
|
|
|
2008-03-25 04:26:08 +00:00
|
|
|
declare i8* @llvm.returnaddress(i32)
|
2004-02-14 02:51:40 +00:00
|
|
|
|
2008-03-25 04:26:08 +00:00
|
|
|
declare i8* @llvm.frameaddress(i32)
|
|
|
|
|
|
|
|
define i8* @test1() {
|
|
|
|
%X = call i8* @llvm.returnaddress( i32 0 ) ; <i8*> [#uses=1]
|
|
|
|
ret i8* %X
|
2004-02-14 02:51:40 +00:00
|
|
|
}
|
|
|
|
|
2008-03-25 04:26:08 +00:00
|
|
|
define i8* @test2() {
|
|
|
|
%X = call i8* @llvm.frameaddress( i32 0 ) ; <i8*> [#uses=1]
|
|
|
|
ret i8* %X
|
2004-02-14 02:51:40 +00:00
|
|
|
}
|
2008-03-25 04:26:08 +00:00
|
|
|
|