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/RISCV | |
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/RISCV')
-rw-r--r-- | llvm/test/CodeGen/RISCV/interrupt-attr-nocall.ll | 2 | ||||
-rw-r--r-- | llvm/test/CodeGen/RISCV/interrupt-attr.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/RISCV/interrupt-attr-nocall.ll b/llvm/test/CodeGen/RISCV/interrupt-attr-nocall.ll index 3b3ee617b13..c36a01ca3d9 100644 --- a/llvm/test/CodeGen/RISCV/interrupt-attr-nocall.ll +++ b/llvm/test/CodeGen/RISCV/interrupt-attr-nocall.ll @@ -760,4 +760,4 @@ define void @foo_fp_double() nounwind #1 { } attributes #0 = { "interrupt"="machine" } -attributes #1 = { "interrupt"="machine" "no-frame-pointer-elim"="true" } +attributes #1 = { "interrupt"="machine" "frame-pointer"="all" } diff --git a/llvm/test/CodeGen/RISCV/interrupt-attr.ll b/llvm/test/CodeGen/RISCV/interrupt-attr.ll index f7831edac21..040521a8edf 100644 --- a/llvm/test/CodeGen/RISCV/interrupt-attr.ll +++ b/llvm/test/CodeGen/RISCV/interrupt-attr.ll @@ -1063,4 +1063,4 @@ define void @foo_fp_with_call() #3 { attributes #0 = { nounwind "interrupt"="user" } attributes #1 = { nounwind "interrupt"="supervisor" } attributes #2 = { nounwind "interrupt"="machine" } -attributes #3 = { nounwind "interrupt"="machine" "no-frame-pointer-elim"="true" } +attributes #3 = { nounwind "interrupt"="machine" "frame-pointer"="all" } |