- Expand tabs to spaces.
- select_bits.ll now fully functional now that PR1993 is closed. It was
  previously broken by refactoring in SPUInstrInfo.td and using multiclasses.
- Same for eqv.ll


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47972 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/CellSPU/fcmp.ll b/test/CodeGen/CellSPU/fcmp.ll
index d212bd5..aad7717 100644
--- a/test/CodeGen/CellSPU/fcmp.ll
+++ b/test/CodeGen/CellSPU/fcmp.ll
@@ -10,13 +10,13 @@
 declare float @fabsf(float)
 
 define i1 @fcmp_eq(float %arg1, float %arg2) {
-	%A = fcmp oeq float %arg1,  %arg2 	; <float> [#uses=1]
-	ret i1 %A
+        %A = fcmp oeq float %arg1,  %arg2       ; <float> [#uses=1]
+        ret i1 %A
 }
 
 define i1 @fcmp_mag_eq(float %arg1, float %arg2) {
-	%A = call float @fabsf(float %arg1)	; <float> [#uses=1]
-	%B = call float @fabsf(float %arg2)	; <float> [#uses=1]
-	%C = fcmp oeq float %A,  %B	; <float> [#uses=1]
-	ret i1 %C
+        %A = call float @fabsf(float %arg1)     ; <float> [#uses=1]
+        %B = call float @fabsf(float %arg2)     ; <float> [#uses=1]
+        %C = fcmp oeq float %A,  %B     ; <float> [#uses=1]
+        ret i1 %C
 }