diff options
Diffstat (limited to 'test/CodeGen/X86/x86-frameaddr2.ll')
-rw-r--r-- | test/CodeGen/X86/x86-frameaddr2.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/X86/x86-frameaddr2.ll b/test/CodeGen/X86/x86-frameaddr2.ll new file mode 100644 index 0000000..c509115 --- /dev/null +++ b/test/CodeGen/X86/x86-frameaddr2.ll @@ -0,0 +1,9 @@ +; RUN: llc < %s -march=x86 | grep mov | count 3 + +define i8* @t() nounwind { +entry: + %0 = tail call i8* @llvm.frameaddress(i32 2) + ret i8* %0 +} + +declare i8* @llvm.frameaddress(i32) nounwind readnone |