Skip to content
Snippets Groups Projects
Commit a270467c authored by Misha Brukman's avatar Misha Brukman
Browse files

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

llvm-svn: 15009
parent 8a92e19b
No related merge requests found
...@@ -136,7 +136,7 @@ public: ...@@ -136,7 +136,7 @@ public:
/// ///
bool equalsInt(unsigned char V) const { bool equalsInt(unsigned char V) const {
assert(V <= 127 && 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; return Val.Unsigned == V;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment