[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/MiBench/security-blowfish/bftest.c
Anton Korobeynikov
asl at math.spbu.ru
Thu Jan 11 16:17:17 PST 2007
Changes in directory llvm-test/MultiSource/Benchmarks/MiBench/security-blowfish:
bftest.c updated: 1.1 -> 1.2
---
Log message:
Don't print uninitialized value to output :)
---
Diffs of the changes: (+1 -1)
bftest.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm-test/MultiSource/Benchmarks/MiBench/security-blowfish/bftest.c
diff -u llvm-test/MultiSource/Benchmarks/MiBench/security-blowfish/bftest.c:1.1 llvm-test/MultiSource/Benchmarks/MiBench/security-blowfish/bftest.c:1.2
--- llvm-test/MultiSource/Benchmarks/MiBench/security-blowfish/bftest.c:1.1 Tue Jan 9 18:01:14 2007
+++ llvm-test/MultiSource/Benchmarks/MiBench/security-blowfish/bftest.c Thu Jan 11 18:17:01 2007
@@ -302,7 +302,7 @@
printf("\n");
printf("cbc cipher text\n");
printf("cipher[%d]= ",32);
- for (j=0; j<32+1; j++)
+ for (j=0; j<32; j++)
printf("%02X",cbc_ok[j]);
printf("\n");
More information about the llvm-commits
mailing list