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/WebAssemblyInstrInteger.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/WebAssemblyInstrInteger.td')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td b/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td index 4b45ccb3907..65a9f0c19b4 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td +++ b/llvm/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">; |