diff options
author | Dan Gohman <dan433584@gmail.com> | 2015-11-15 15:34:19 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2015-11-15 15:34:19 +0000 |
commit | 1031d4a8c3ebcf292fb697beff6bbd09477822d9 (patch) | |
tree | 59e5be43be258c35ae35d975bed0f09443ac1552 /llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td | |
parent | cbba348ae7e66f590fdea4af96f1cdda750f11b5 (diff) | |
download | bcm5719-llvm-1031d4a8c3ebcf292fb697beff6bbd09477822d9.tar.gz bcm5719-llvm-1031d4a8c3ebcf292fb697beff6bbd09477822d9.zip |
[WebAssembly] Use tabs instead of spaces in assembly output.
This seems to be the most popular convention among the other backends.
llvm-svn: 253172
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td b/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td index 5883553e8f1..af73a93c207 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td +++ b/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td @@ -15,11 +15,11 @@ 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">; + "br_if\t$dst, $a">; let isBarrier = 1 in { def BR : I<(outs), (ins bb_op:$dst), [(br bb:$dst)], - "br $dst">; + "br\t$dst">; } // isBarrier = 1 } // isBranch = 1, isTerminator = 1, hasCtrlDep = 1 @@ -29,19 +29,19 @@ def BR : I<(outs), (ins bb_op:$dst), let isTerminator = 1, hasCtrlDep = 1, isBarrier = 1 in { def SWITCH_I32 : I<(outs), (ins I32:$index, variable_ops), [(WebAssemblyswitch I32:$index)], - "switch $index">; + "switch\t$index">; def SWITCH_I64 : I<(outs), (ins I64:$index, variable_ops), [(WebAssemblyswitch I64:$index)], - "switch $index">; + "switch\t$index">; } // isTerminator = 1, hasCtrlDep = 1, isBarrier = 1 // Placemarkers to indicate the start of a block or loop scope. -def BLOCK : I<(outs), (ins bb_op:$dst), [], "block $dst">; -def LOOP : I<(outs), (ins bb_op:$dst), [], "loop $dst">; +def BLOCK : I<(outs), (ins bb_op:$dst), [], "block\t$dst">; +def LOOP : I<(outs), (ins bb_op:$dst), [], "loop\t$dst">; multiclass RETURN<WebAssemblyRegClass vt> { def RETURN_#vt : I<(outs), (ins vt:$val), [(WebAssemblyreturn vt:$val)], - "return $val">; + "return\t$val">; } let isTerminator = 1, hasCtrlDep = 1, isBarrier = 1 in { |