summaryrefslogtreecommitdiff
path: root/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
diff options
context:
space:
mode:
authorDan Gohman <dan433584@gmail.com>2015-11-15 15:34:19 +0000
committerDan Gohman <dan433584@gmail.com>2015-11-15 15:34:19 +0000
commit284e00c04e6fb5ba4cb413b6b1e2b1b0152d89fa (patch)
treef344c1b05af30fb1493533021cb01dc7f30f8321 /lib/Target/WebAssembly/WebAssemblyInstrInteger.td
parent8adc1eabfb7d006fd1966800ecef18d5daea15ac (diff)
[WebAssembly] Use tabs instead of spaces in assembly output.
This seems to be the most popular convention among the other backends. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253172 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/WebAssembly/WebAssemblyInstrInteger.td')
-rw-r--r--lib/Target/WebAssembly/WebAssemblyInstrInteger.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/WebAssembly/WebAssemblyInstrInteger.td b/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
index 4b45ccb3907..65a9f0c19b4 100644
--- a/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
+++ b/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
@@ -49,7 +49,7 @@ def : Pat<(cttz_zero_undef I64:$src), (CTZ_I64 I64:$src)>;
def SELECT_I32 : I<(outs I32:$dst), (ins I32:$cond, I32:$lhs, I32:$rhs),
[(set I32:$dst, (select I32:$cond, I32:$lhs, I32:$rhs))],
- "i32.select $dst, $cond, $lhs, $rhs">;
+ "i32.select\t$dst, $cond, $lhs, $rhs">;
def SELECT_I64 : I<(outs I64:$dst), (ins I32:$cond, I64:$lhs, I64:$rhs),
[(set I64:$dst, (select I32:$cond, I64:$lhs, I64:$rhs))],
- "i64.select $dst, $cond, $lhs, $rhs">;
+ "i64.select\t$dst, $cond, $lhs, $rhs">;