mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-04 01:26:41 +00:00
[WinEH] Remove isBarrier from instructions that do not return
Fixes machine verification failures with David's latest EH change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252541 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
512052a88e
commit
ba2a27d116
@ -163,7 +163,7 @@ let isTerminator = 1, hasSideEffects = 1, isBarrier = 1, hasCtrlDep = 1,
|
||||
[(catchret bb:$dst, bb:$from)]>;
|
||||
}
|
||||
|
||||
let hasSideEffects = 1, isBarrier = 1, hasCtrlDep = 1, isCodeGenOnly = 1,
|
||||
let hasSideEffects = 1, hasCtrlDep = 1, isCodeGenOnly = 1,
|
||||
usesCustomInserter = 1 in
|
||||
def CATCHPAD : I<0, Pseudo, (outs), (ins), "# CATCHPAD", [(catchpad)]>;
|
||||
|
||||
@ -172,7 +172,7 @@ def CATCHPAD : I<0, Pseudo, (outs), (ins), "# CATCHPAD", [(catchpad)]>;
|
||||
// parent function or funclet. It generally sets ESP and EBP, and optionally
|
||||
// ESI. It is only needed for 32-bit WinEH, as the runtime restores CSRs for us
|
||||
// elsewhere.
|
||||
let hasSideEffects = 1, isBarrier = 1, hasCtrlDep = 1, isCodeGenOnly = 1 in
|
||||
let hasSideEffects = 1, hasCtrlDep = 1, isCodeGenOnly = 1 in
|
||||
def EH_RESTORE : I<0, Pseudo, (outs), (ins), "# EH_RESTORE", []>;
|
||||
|
||||
let hasSideEffects = 1, isBarrier = 1, isCodeGenOnly = 1,
|
||||
|
Loading…
x
Reference in New Issue
Block a user