For PR1336:

This test was failing because of signlessness and a difference in the
way the AsmWriter prints arguments.

llvm-svn: 36098
This commit is contained in:
Reid Spencer 2007-04-16 01:31:11 +00:00
parent e3dbe62579
commit 59d3ca99b6
1 changed files with 2 additions and 2 deletions

View File

@ -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);