diff options
Diffstat (limited to 'llvm/test/CodeGen/Thumb2/thumb2-ldm.ll')
-rw-r--r-- | llvm/test/CodeGen/Thumb2/thumb2-ldm.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/Thumb2/thumb2-ldm.ll b/llvm/test/CodeGen/Thumb2/thumb2-ldm.ll index abda4bac57d..a33efd204ba 100644 --- a/llvm/test/CodeGen/Thumb2/thumb2-ldm.ll +++ b/llvm/test/CodeGen/Thumb2/thumb2-ldm.ll @@ -3,7 +3,7 @@ @X = external global [0 x i32] ; <[0 x i32]*> [#uses=5] -define i32 @t1() "no-frame-pointer-elim"="true" { +define i32 @t1() "frame-pointer"="all" { ; ALL-LABEL: t1: ; ALL: push {r7, lr} ; CHECK: ldrd @@ -16,7 +16,7 @@ define i32 @t1() "no-frame-pointer-elim"="true" { ret i32 %tmp4 } -define i32 @t2() "no-frame-pointer-elim"="true" { +define i32 @t2() "frame-pointer"="all" { ; ALL-LABEL: t2: ; ALL: push {r7, lr} ; CHECK: ldm @@ -30,7 +30,7 @@ define i32 @t2() "no-frame-pointer-elim"="true" { ret i32 %tmp6 } -define i32 @t3() "no-frame-pointer-elim"="true" { +define i32 @t3() "frame-pointer"="all" { ; ALL-LABEL: t3: ; ALL: push {r7, lr} ; CHECK: ldm @@ -46,7 +46,7 @@ define i32 @t3() "no-frame-pointer-elim"="true" { @g = common global i32* null -define void @t4(i32 %a0, i32 %a1, i32 %a2) "no-frame-pointer-elim"="true" { +define void @t4(i32 %a0, i32 %a1, i32 %a2) "frame-pointer"="all" { ; ALL-LABEL: t4: ; ALL: stm.w sp, {r0, r1, r2} ; ALL: bl _ext |