1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Align whitespace

llvm-svn: 252003
This commit is contained in:
Derek Schuff 2015-11-03 22:40:43 +00:00
parent d517fd90fa
commit 3d1dc78633
2 changed files with 4 additions and 4 deletions

View File

@ -60,6 +60,6 @@ def : Pat<(setge f64:$lhs, f64:$rhs), (GE_F64 f64:$lhs, f64:$rhs)>;
*/
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))]>;

View File

@ -48,6 +48,6 @@ def : Pat<(cttz_zero_undef I32:$src), (CTZ_I32 I32:$src)>;
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))]>;