[llvm] r252003 - Align whitespace

Derek Schuff via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 3 14:40:44 PST 2015


Author: dschuff
Date: Tue Nov  3 16:40:43 2015
New Revision: 252003

URL: http://llvm.org/viewvc/llvm-project?rev=252003&view=rev
Log:
Align whitespace

Modified:
    llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
    llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrInteger.td

Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrFloat.td?rev=252003&r1=252002&r2=252003&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrFloat.td (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrFloat.td Tue Nov  3 16:40:43 2015
@@ -60,6 +60,6 @@ def : Pat<(setge f64:$lhs, f64:$rhs), (G
  */
 
 def SELECT_F32 : I<(outs F32:$dst), (ins I32:$cond, F32:$lhs, F32:$rhs),
-               [(set F32:$dst, (select I32:$cond, F32:$lhs, F32:$rhs))]>;
+                   [(set F32:$dst, (select I32:$cond, F32:$lhs, F32:$rhs))]>;
 def SELECT_F64 : I<(outs F64:$dst), (ins I32:$cond, F64:$lhs, F64:$rhs),
-               [(set F64:$dst, (select I32:$cond, F64:$lhs, F64:$rhs))]>;
+                   [(set F64:$dst, (select I32:$cond, F64:$lhs, F64:$rhs))]>;

Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrInteger.td?rev=252003&r1=252002&r2=252003&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrInteger.td (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrInteger.td Tue Nov  3 16:40:43 2015
@@ -48,6 +48,6 @@ def : Pat<(cttz_zero_undef I32:$src), (C
 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))]>;
+                   [(set I32:$dst, (select I32:$cond, I32:$lhs, I32:$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))]>;
+                   [(set I64:$dst, (select I32:$cond, I64:$lhs, I64:$rhs))]>;




More information about the llvm-commits mailing list