[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/Integer/big_bit_concat.c
Reid Spencer
reid at x10sys.com
Wed May 16 22:15:02 PDT 2007
Changes in directory llvm-test/SingleSource/UnitTests/Integer:
big_bit_concat.c updated: 1.1 -> 1.2
---
Log message:
Don't shy away from multiple assignments now that its fixed.
---
Diffs of the changes: (+1 -2)
big_bit_concat.c | 3 +--
1 files changed, 1 insertion(+), 2 deletions(-)
Index: llvm-test/SingleSource/UnitTests/Integer/big_bit_concat.c
diff -u llvm-test/SingleSource/UnitTests/Integer/big_bit_concat.c:1.1 llvm-test/SingleSource/UnitTests/Integer/big_bit_concat.c:1.2
--- llvm-test/SingleSource/UnitTests/Integer/big_bit_concat.c:1.1 Wed May 16 23:24:24 2007
+++ llvm-test/SingleSource/UnitTests/Integer/big_bit_concat.c Thu May 17 00:14:44 2007
@@ -27,8 +27,7 @@
printf("Attempting %d bit_concat operations\n", count);
for (i = 0; i < count; i++) {
- Y = 0;
- X = 0;
+ Y = X = 0;
for (j = 0; j < bitwidthof(uint500); j++) {
X <<= 1;
X += (rand() % 2 == 0 ? 0 : 1);
More information about the llvm-commits
mailing list