diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-16 01:31:11 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-16 01:31:11 +0000 |
| commit | 59d3ca99b6e4c3073b776ef7f4f73fc912cfe118 (patch) | |
| tree | 5c4f77cfb14e5dff2178bf552a4bba841fdde60f /llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c | |
| parent | e3dbe6257979197cccfa72b41fd484e44c1232c9 (diff) | |
| download | bcm5719-llvm-59d3ca99b6e4c3073b776ef7f4f73fc912cfe118.tar.gz bcm5719-llvm-59d3ca99b6e4c3073b776ef7f4f73fc912cfe118.zip | |
For PR1336:
This test was failing because of signlessness and a difference in the
way the AsmWriter prints arguments.
llvm-svn: 36098
Diffstat (limited to 'llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c')
| -rw-r--r-- | llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c b/llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c index 96356c553db..ee74432db31 100644 --- a/llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c +++ b/llvm/test/CFrontend/2006-01-16-BitCountIntrinsicsUnsigned.c @@ -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); |

