summaryrefslogtreecommitdiff
path: root/test/CodeGen/Mips/frame-address.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Mips/frame-address.ll')
-rw-r--r--test/CodeGen/Mips/frame-address.ll7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/CodeGen/Mips/frame-address.ll b/test/CodeGen/Mips/frame-address.ll
index 92946d9ffd683..0ab7da30e785f 100644
--- a/test/CodeGen/Mips/frame-address.ll
+++ b/test/CodeGen/Mips/frame-address.ll
@@ -2,11 +2,16 @@
declare i8* @llvm.frameaddress(i32) nounwind readnone
-define i8* @f() nounwind {
+define i8* @f() nounwind uwtable {
entry:
%0 = call i8* @llvm.frameaddress(i32 0)
ret i8* %0
+; CHECK: .cfi_startproc
+; CHECK: .cfi_def_cfa_offset 8
+; CHECK: .cfi_offset 30, -4
; CHECK: move $fp, $sp
+; CHECK: .cfi_def_cfa_register 30
; CHECK: move $2, $fp
+; CHECK: .cfi_endproc
}