diff options
| author | Mandeep Singh Grang <mgrang@codeaurora.org> | 2019-01-16 00:37:13 +0000 |
|---|---|---|
| committer | Mandeep Singh Grang <mgrang@codeaurora.org> | 2019-01-16 00:37:13 +0000 |
| commit | 436735c3fe8e11ab6535c6b323113ae2c4e1a307 (patch) | |
| tree | b8c3af472e3acb5bf055ace287dfc4418b1a105c /llvm/test/DebugInfo | |
| parent | dca9c7cf240944f919f29e57cb12abc2599b084a (diff) | |
| download | bcm5719-llvm-436735c3fe8e11ab6535c6b323113ae2c4e1a307.tar.gz bcm5719-llvm-436735c3fe8e11ab6535c6b323113ae2c4e1a307.zip | |
[EH] Rename llvm.x86.seh.recoverfp intrinsic to llvm.eh.recoverfp
Summary:
Make recoverfp intrinsic target-independent so that it can be implemented for AArch64, etc.
Refer D53541 for the context. Clang counterpart D56748.
Reviewers: rnk, efriedma
Reviewed By: rnk, efriedma
Subscribers: javed.absar, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D56747
llvm-svn: 351281
Diffstat (limited to 'llvm/test/DebugInfo')
| -rw-r--r-- | llvm/test/DebugInfo/COFF/frameproc-flags.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/DebugInfo/COFF/frameproc-flags.ll b/llvm/test/DebugInfo/COFF/frameproc-flags.ll index b2a1ef97cfb..b7c05928901 100644 --- a/llvm/test/DebugInfo/COFF/frameproc-flags.ll +++ b/llvm/test/DebugInfo/COFF/frameproc-flags.ll @@ -216,7 +216,7 @@ __try.cont: ; preds = %entry, %__except.re define internal i32 @"?filt$0@0@seh@@"() #8 !dbg !74 { entry: %0 = tail call i8* @llvm.frameaddress(i32 1) - %1 = tail call i8* @llvm.x86.seh.recoverfp(i8* bitcast (void ()* @seh to i8*), i8* %0) + %1 = tail call i8* @llvm.eh.recoverfp(i8* bitcast (void ()* @seh to i8*), i8* %0) %2 = tail call i8* @llvm.localrecover(i8* bitcast (void ()* @seh to i8*), i8* %1, i32 0) %__exception_code = bitcast i8* %2 to i32* %3 = getelementptr inbounds i8, i8* %0, i32 -20, !dbg !76 @@ -233,7 +233,7 @@ entry: declare i8* @llvm.frameaddress(i32) #9 ; Function Attrs: nounwind readnone -declare i8* @llvm.x86.seh.recoverfp(i8*, i8*) #9 +declare i8* @llvm.eh.recoverfp(i8*, i8*) #9 ; Function Attrs: nounwind readnone declare i8* @llvm.localrecover(i8*, i8*, i32) #9 |

