include the other bit count intrinsics
authorChris Lattner <sabre@nondot.org>
Wed, 11 May 2005 05:31:01 +0000 (05:31 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 11 May 2005 05:31:01 +0000 (05:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21863 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Generic/llvm-ct-intrinsics.ll

index b5c9e6febaeef1e98085c77e0eb67e3fc455ddcd..2095ca3584f15bff0bf8ce5f5e2005aec667fb94 100644 (file)
@@ -19,3 +19,41 @@ void %ctpoptest(sbyte %A, short %B, int %C, long %D,
        store long  %d, long* %DP
        ret void
 }
+
+declare long %llvm.ctlz(long)
+declare int %llvm.ctlz(int)
+declare short %llvm.ctlz(short)
+declare sbyte %llvm.ctlz(sbyte)
+
+void %ctlztest(sbyte %A, short %B, int %C, long %D, 
+               sbyte *%AP, short* %BP, int* %CP, long* %DP) {
+       %a = call sbyte %llvm.ctlz(sbyte %A)
+       %b = call short %llvm.ctlz(short %B)
+       %c = call int %llvm.ctlz(int %C)
+       %d = call long %llvm.ctlz(long %D)
+
+       store sbyte %a, sbyte* %AP
+       store short %b, short* %BP
+       store int   %c, int* %CP
+       store long  %d, long* %DP
+       ret void
+}
+
+declare long %llvm.cttz(long)
+declare int %llvm.cttz(int)
+declare short %llvm.cttz(short)
+declare sbyte %llvm.cttz(sbyte)
+
+void %cttztest(sbyte %A, short %B, int %C, long %D, 
+               sbyte *%AP, short* %BP, int* %CP, long* %DP) {
+       %a = call sbyte %llvm.cttz(sbyte %A)
+       %b = call short %llvm.cttz(short %B)
+       %c = call int %llvm.cttz(int %C)
+       %d = call long %llvm.cttz(long %D)
+
+       store sbyte %a, sbyte* %AP
+       store short %b, short* %BP
+       store int   %c, int* %CP
+       store long  %d, long* %DP
+       ret void
+}