diff options
author | Fangrui Song <maskray@google.com> | 2019-12-24 15:52:21 -0800 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2019-12-24 15:57:33 -0800 |
commit | 502a77f125f43ffde57af34d3fd1b900248a91cd (patch) | |
tree | 7419d0e805ddb78f17bccc1b3e1b8aaddaa779b9 /llvm/test/CodeGen/Thumb/large-stack.ll | |
parent | 3732f4e093f9aed7aad9740e460e00a248f28572 (diff) | |
download | bcm5719-llvm-502a77f125f43ffde57af34d3fd1b900248a91cd.tar.gz bcm5719-llvm-502a77f125f43ffde57af34d3fd1b900248a91cd.zip |
Migrate function attribute "no-frame-pointer-elim" to "frame-pointer"="all" as cleanups after D56351
Diffstat (limited to 'llvm/test/CodeGen/Thumb/large-stack.ll')
-rw-r--r-- | llvm/test/CodeGen/Thumb/large-stack.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/Thumb/large-stack.ll b/llvm/test/CodeGen/Thumb/large-stack.ll index 923d2c06d23..1242b571f50 100644 --- a/llvm/test/CodeGen/Thumb/large-stack.ll +++ b/llvm/test/CodeGen/Thumb/large-stack.ll @@ -28,7 +28,7 @@ define void @test100() { } ; Largest stack for which three tADDspi/tSUBspis are enough -define void @test100_nofpelim() "no-frame-pointer-elim"="true" { +define void @test100_nofpelim() "frame-pointer"="all" { ; CHECK-LABEL: test100_nofpelim: ; CHECK: sub sp, #508 ; CHECK: sub sp, #508 @@ -52,7 +52,7 @@ define void @test2() { } ; Smallest stack for which we use a constant pool -define void @test2_nofpelim() "no-frame-pointer-elim"="true" { +define void @test2_nofpelim() "frame-pointer"="all" { ; CHECK-LABEL: test2_nofpelim: ; CHECK: ldr [[TEMP:r[0-7]]], ; CHECK: add sp, [[TEMP]] @@ -79,7 +79,7 @@ define i32 @test3() { ret i32 %tmp1 } -define i32 @test3_nofpelim() "no-frame-pointer-elim"="true" { +define i32 @test3_nofpelim() "frame-pointer"="all" { ; CHECK-LABEL: test3_nofpelim: ; CHECK: ldr [[TEMP:r[0-7]]], ; CHECK: add sp, [[TEMP]] |