[llvm-commits] CVS: llvm/include/llvm/Constants.h
Misha Brukman
brukman at cs.uiuc.edu
Mon Jul 19 14:11:55 PDT 2004
Changes in directory llvm/include/llvm:
Constants.h updated: 1.51 -> 1.52
---
Log message:
Convert tabs to spaces; fix name of function in assert() description.
---
Diffs of the changes: (+1 -1)
Index: llvm/include/llvm/Constants.h
diff -u llvm/include/llvm/Constants.h:1.51 llvm/include/llvm/Constants.h:1.52
--- llvm/include/llvm/Constants.h:1.51 Sun Jul 18 19:58:47 2004
+++ llvm/include/llvm/Constants.h Mon Jul 19 16:11:45 2004
@@ -136,7 +136,7 @@
///
bool equalsInt(unsigned char V) const {
assert(V <= 127 &&
- "equals: Can only be used with very small positive constants!");
+ "equalsInt: Can only be used with very small positive constants!");
return Val.Unsigned == V;
}
More information about the llvm-commits
mailing list