temporarily revert r69046

llvm-svn: 69054
This commit is contained in:
Chris Lattner 2009-04-14 18:05:08 +00:00
parent 4527d30c3d
commit 66037791b1
1 changed files with 4 additions and 4 deletions

View File

@ -632,10 +632,10 @@ CharLiteralParser::CharLiteralParser(const char *begin, const char *end,
assert(begin[0] == '\'' && "Invalid token lexed");
++begin;
// FIXME: This assumes that 'int' is not more than 32-bits in overflow
// calculation, and the size of "value".
assert(PP.getTargetInfo().getIntWidth() <= 32 &&
"Assumes sizeof(int) <= 4 for now");
// FIXME: This assumes that 'int' is 32-bits in overflow calculation, and the
// size of "value".
assert(PP.getTargetInfo().getIntWidth() == 32 &&
"Assumes sizeof(int) == 4 for now");
// FIXME: This assumes that wchar_t is 32-bits for now.
assert(PP.getTargetInfo().getWCharWidth() == 32 &&
"Assumes sizeof(wchar_t) == 4 for now");