[llvm-commits] CVS: llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c

Reid Spencer reid at x10sys.com
Sun Apr 15 18:31:32 PDT 2007



Changes in directory llvm/test/CFrontend:

2006-01-16-BitCountIntrinsicsUnsigned.c updated: 1.4 -> 1.5
---
Log message:

For PR1336: http://llvm.org/PR1336 :
This test was failing because of signlessness and a difference in the
way the AsmWriter prints arguments.


---
Diffs of the changes:  (+2 -2)

 2006-01-16-BitCountIntrinsicsUnsigned.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c
diff -u llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c:1.4 llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c:1.5
--- llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c:1.4	Sun Apr 15 18:00:46 2007
+++ llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c	Sun Apr 15 20:31:11 2007
@@ -1,5 +1,5 @@
-// RUN: %llvmgcc -S %s -o - | grep {llvm.ctlz.i32(i32} | wc -l | grep 2
-// XFAIL: *
+// RUN: %llvmgcc -S %s -o - | grep {llvm.ctlz.i32( i32} | wc -l | grep 2
+// RUN: %llvmgcc -S %s -o - | grep {llvm.ctlz.i32(i32} | wc -l | grep 1
 
 unsigned t2(unsigned X) {
   return __builtin_clz(X);






More information about the llvm-commits mailing list