Convert tabs to spaces; fix name of function in assert() description.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15009 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2004-07-19 21:11:45 +00:00
parent cbf1edb875
commit 049c48f1ad

View File

@ -136,7 +136,7 @@ public:
///
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;
}