1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

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

llvm-svn: 15009
This commit is contained in:
Misha Brukman 2004-07-19 21:11:45 +00:00
parent 3f60afac10
commit ab7bc6af0d

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;
}