diff options
author | Dan Gohman <dan433584@gmail.com> | 2015-11-13 00:46:31 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2015-11-13 00:46:31 +0000 |
commit | 231244c304f4a49ccb63493302a8876a2672be69 (patch) | |
tree | e282ca7f068cb4b029d6352ea4e07b1ab950ed9c /llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td | |
parent | 7828b1e604f22e81815a3c2fc357e319f2807bb8 (diff) | |
download | bcm5719-llvm-231244c304f4a49ccb63493302a8876a2672be69.tar.gz bcm5719-llvm-231244c304f4a49ccb63493302a8876a2672be69.zip |
[WebAssembly] Rename BR_IF_ to BR_IF
With MC-based instruction printing, we no longer need instruction names to
mangle in hints about how they should be printed.
llvm-svn: 252987
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td b/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td index b5140324d4f..5883553e8f1 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td +++ b/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td @@ -13,9 +13,9 @@ //===----------------------------------------------------------------------===// let isBranch = 1, isTerminator = 1, hasCtrlDep = 1 in { -def BR_IF_ : I<(outs), (ins bb_op:$dst, I32:$a), - [(brcond I32:$a, bb:$dst)], - "br_if $dst, $a">; +def BR_IF : I<(outs), (ins bb_op:$dst, I32:$a), + [(brcond I32:$a, bb:$dst)], + "br_if $dst, $a">; let isBarrier = 1 in { def BR : I<(outs), (ins bb_op:$dst), [(br bb:$dst)], |