[llvm-commits] CVS: llvm-www/releases/testregister.cgi
John Criswell
criswell at cs.uiuc.edu
Thu Dec 18 13:48:02 PST 2003
Changes in directory llvm-www/releases:
testregister.cgi updated: 1.18 -> 1.19
---
Log message:
Get the program to check for a colon in the first character of the string.
---
Diffs of the changes: (+1 -1)
Index: llvm-www/releases/testregister.cgi
diff -u llvm-www/releases/testregister.cgi:1.18 llvm-www/releases/testregister.cgi:1.19
--- llvm-www/releases/testregister.cgi:1.18 Thu Dec 18 13:23:08 2003
+++ llvm-www/releases/testregister.cgi Thu Dec 18 13:46:59 2003
@@ -24,7 +24,7 @@
if ((len (item)) == 0):
return 0
length = len (item) - 1
- while (length != 0):
+ while (length != -1):
if (item[length] == ':'):
return 1
length=length - 1
More information about the llvm-commits
mailing list