diff options
author | Hans Wennborg <hans@hanshq.net> | 2015-11-12 14:37:56 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2015-11-12 14:37:56 +0000 |
commit | 7384a2de027b5b5b20b5110b64d05bbe51ea3a03 (patch) | |
tree | 817375354c233e65d8e9593d272055c9ac4fc58c /llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td | |
parent | 3ecce92a5280c6c813469dcbed68d5d9c66cf699 (diff) | |
download | llvm-7384a2de027b5b5b20b5110b64d05bbe51ea3a03.zip llvm-7384a2de027b5b5b20b5110b64d05bbe51ea3a03.tar.gz llvm-7384a2de027b5b5b20b5110b64d05bbe51ea3a03.tar.bz2 |
Revert r252858: "[WebAssembly] Switch to MC for instruction printing."
It broke the CMake build:
"Cannot find source file: WebAssemblyRegNumbering.cpp"
llvm-svn: 252897
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td b/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td index acfd738..6aae5d3 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td +++ b/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td @@ -41,11 +41,9 @@ def BR : I<(outs), (ins bb_op:$dst), // currently. let isTerminator = 1, hasCtrlDep = 1, isBarrier = 1 in { def SWITCH_I32 : I<(outs), (ins I32:$index, variable_ops), - [(WebAssemblyswitch I32:$index)], - "switch $index">; + [(WebAssemblyswitch I32:$index)]>; def SWITCH_I64 : I<(outs), (ins I64:$index, variable_ops), - [(WebAssemblyswitch I64:$index)], - "switch $index">; + [(WebAssemblyswitch I64:$index)]>; } // isTerminator = 1, hasCtrlDep = 1, isBarrier = 1 // Placemarkers to indicate the start of a block or loop scope. |