[ARM] Enable shrink-wrapping by default.
[oota-llvm.git] / test / CodeGen / Generic / llvm-ct-intrinsics.ll
index 014d261c521fa6934e43c2a2e5ecb48a03b6317f..abcdb9bbbc14a91c6786aadf8dcb6bf173b87d09 100644 (file)
@@ -1,59 +1,62 @@
 ; Make sure this testcase is supported by all code generators
-; RUN: llvm-upgrade < %s | llvm-as | llc
-
-declare ulong %llvm.ctpop.i64(ulong)
-declare uint %llvm.ctpop.i32(uint)
-declare ushort %llvm.ctpop.i16(ushort)
-declare ubyte %llvm.ctpop.i8(ubyte)
-
-void %ctpoptest(ubyte %A, ushort %B, uint %C, ulong %D, 
-                ubyte *%AP, ushort* %BP, uint* %CP, ulong* %DP) {
-       %a = call ubyte %llvm.ctpop.i8(ubyte %A)
-       %b = call ushort %llvm.ctpop.i16(ushort %B)
-       %c = call uint %llvm.ctpop.i32(uint %C)
-       %d = call ulong %llvm.ctpop.i64(ulong %D)
-
-       store ubyte %a, ubyte* %AP
-       store ushort %b, ushort* %BP
-       store uint   %c, uint* %CP
-       store ulong  %d, ulong* %DP
+; RUN: llc < %s
+
+declare i64 @llvm.ctpop.i64(i64)
+
+declare i32 @llvm.ctpop.i32(i32)
+
+declare i16 @llvm.ctpop.i16(i16)
+
+declare i8 @llvm.ctpop.i8(i8)
+
+define void @ctpoptest(i8 %A, i16 %B, i32 %C, i64 %D, i8* %AP, i16* %BP, i32* %CP, i64* %DP) {
+       %a = call i8 @llvm.ctpop.i8( i8 %A )            ; <i8> [#uses=1]
+       %b = call i16 @llvm.ctpop.i16( i16 %B )         ; <i16> [#uses=1]
+       %c = call i32 @llvm.ctpop.i32( i32 %C )         ; <i32> [#uses=1]
+       %d = call i64 @llvm.ctpop.i64( i64 %D )         ; <i64> [#uses=1]
+       store i8 %a, i8* %AP
+       store i16 %b, i16* %BP
+       store i32 %c, i32* %CP
+       store i64 %d, i64* %DP
        ret void
 }
 
-declare ulong %llvm.ctlz.i64(ulong)
-declare uint %llvm.ctlz.i32(uint)
-declare ushort %llvm.ctlz.i16(ushort)
-declare ubyte %llvm.ctlz.i8(ubyte)
-
-void %ctlztest(ubyte %A, ushort %B, uint %C, ulong %D, 
-               ubyte *%AP, ushort* %BP, uint* %CP, ulong* %DP) {
-       %a = call ubyte %llvm.ctlz.i8(ubyte %A)
-       %b = call ushort %llvm.ctlz.i16(ushort %B)
-       %c = call uint %llvm.ctlz.i32(uint %C)
-       %d = call ulong %llvm.ctlz.i64(ulong %D)
-
-       store ubyte %a, ubyte* %AP
-       store ushort %b, ushort* %BP
-       store uint   %c, uint* %CP
-       store ulong  %d, ulong* %DP
+declare i64 @llvm.ctlz.i64(i64, i1)
+
+declare i32 @llvm.ctlz.i32(i32, i1)
+
+declare i16 @llvm.ctlz.i16(i16, i1)
+
+declare i8 @llvm.ctlz.i8(i8, i1)
+
+define void @ctlztest(i8 %A, i16 %B, i32 %C, i64 %D, i8* %AP, i16* %BP, i32* %CP, i64* %DP) {
+       %a = call i8 @llvm.ctlz.i8( i8 %A, i1 true )            ; <i8> [#uses=1]
+       %b = call i16 @llvm.ctlz.i16( i16 %B, i1 true )         ; <i16> [#uses=1]
+       %c = call i32 @llvm.ctlz.i32( i32 %C, i1 true )         ; <i32> [#uses=1]
+       %d = call i64 @llvm.ctlz.i64( i64 %D, i1 true )         ; <i64> [#uses=1]
+       store i8 %a, i8* %AP
+       store i16 %b, i16* %BP
+       store i32 %c, i32* %CP
+       store i64 %d, i64* %DP
        ret void
 }
 
-declare ulong %llvm.cttz.i64(ulong)
-declare uint %llvm.cttz.i32(uint)
-declare ushort %llvm.cttz.i16(ushort)
-declare ubyte %llvm.cttz.i8(ubyte)
-
-void %cttztest(ubyte %A, ushort %B, uint %C, ulong %D, 
-               ubyte *%AP, ushort* %BP, uint* %CP, ulong* %DP) {
-       %a = call ubyte %llvm.cttz.i8(ubyte %A)
-       %b = call ushort %llvm.cttz.i16(ushort %B)
-       %c = call uint %llvm.cttz.i32(uint %C)
-       %d = call ulong %llvm.cttz.i64(ulong %D)
-
-       store ubyte %a, ubyte* %AP
-       store ushort %b, ushort* %BP
-       store uint   %c, uint* %CP
-       store ulong  %d, ulong* %DP
+declare i64 @llvm.cttz.i64(i64, i1)
+
+declare i32 @llvm.cttz.i32(i32, i1)
+
+declare i16 @llvm.cttz.i16(i16, i1)
+
+declare i8 @llvm.cttz.i8(i8, i1)
+
+define void @cttztest(i8 %A, i16 %B, i32 %C, i64 %D, i8* %AP, i16* %BP, i32* %CP, i64* %DP) {
+       %a = call i8 @llvm.cttz.i8( i8 %A, i1 true )            ; <i8> [#uses=1]
+       %b = call i16 @llvm.cttz.i16( i16 %B, i1 true )         ; <i16> [#uses=1]
+       %c = call i32 @llvm.cttz.i32( i32 %C, i1 true )         ; <i32> [#uses=1]
+       %d = call i64 @llvm.cttz.i64( i64 %D, i1 true )         ; <i64> [#uses=1]
+       store i8 %a, i8* %AP
+       store i16 %b, i16* %BP
+       store i32 %c, i32* %CP
+       store i64 %d, i64* %DP
        ret void
 }