diff options
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td b/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td index 4fa567c98d7..bfce22d0a93 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td +++ b/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td @@ -26,8 +26,8 @@ */ let isBranch = 1, isTerminator = 1, hasCtrlDep = 1 in { -def BRIF : I<(outs), (ins bb_op:$dst, I32:$a), - [(brcond I32:$a, bb:$dst)]>; +def BR_IF_ : I<(outs), (ins bb_op:$dst, I32:$a), + [(brcond I32:$a, bb:$dst)]>; let isBarrier = 1 in { def BR : I<(outs), (ins bb_op:$dst), [(br bb:$dst)]>; |