- 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/ctpop.ll b/test/CodeGen/CellSPU/ctpop.ll
index 5665596..79bb611 100644
--- a/test/CodeGen/CellSPU/ctpop.ll
+++ b/test/CodeGen/CellSPU/ctpop.ll
@@ -11,20 +11,20 @@
declare i32 @llvm.ctpop.i32(i32)
define i32 @test_i8(i8 %X) {
- call i32 @llvm.ctpop.i8(i8 %X)
- %Y = bitcast i32 %1 to i32
- ret i32 %Y
+ call i32 @llvm.ctpop.i8(i8 %X)
+ %Y = bitcast i32 %1 to i32
+ ret i32 %Y
}
define i32 @test_i16(i16 %X) {
call i32 @llvm.ctpop.i16(i16 %X)
- %Y = bitcast i32 %1 to i32
+ %Y = bitcast i32 %1 to i32
ret i32 %Y
}
define i32 @test_i32(i32 %X) {
call i32 @llvm.ctpop.i32(i32 %X)
- %Y = bitcast i32 %1 to i32
+ %Y = bitcast i32 %1 to i32
ret i32 %Y
}