Add support for OR/XOR/SUB immediates that are handled with the new immediate
[oota-llvm.git] / test / Feature / intrinsics.ll
index 76cef5152875c48887ca3fdea8dd1f0f1b88ad6b..973e82f860d4f8f6a7e3861cdcb7417d0fc53d95 100644 (file)
@@ -8,9 +8,9 @@ declare bool %llvm.isunordered(double, double)
 
 declare void %llvm.prefetch(sbyte*, uint, uint)
 
-declare uint %llvm.ctpop.32(uint)
-declare ushort %llvm.cttz.16(ushort)
-declare ulong %llvm.ctlz.64(ulong)
+declare uint %llvm.ctpop(uint)
+declare ushort %llvm.cttz(ushort)
+declare ulong %llvm.ctlz(ulong)
 
 implementation
 
@@ -25,3 +25,5 @@ void %libm() {
         call ulong %llvm.ctlz(ulong 65000)
        ret void
 }
+
+; FIXME: test ALL the intrinsics in this file.