Perform simplification noticed by Reid.

llvm-svn: 77477
This commit is contained in:
Daniel Dunbar 2009-07-29 17:29:36 +00:00
parent 18dfdc99af
commit 59a60c57a6
1 changed files with 0 additions and 4 deletions

View File

@ -93,10 +93,6 @@ raw_ostream &raw_ostream::operator<<(unsigned long long N) {
if (N == static_cast<unsigned long>(N))
return this->operator<<(static_cast<unsigned long>(N));
// Zero is a special case.
if (N == 0)
return *this << '0';
char NumberBuffer[20];
char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
char *CurPtr = EndPtr;