commit | fd5de58ec13b2de5f278195376a947eb06547a54 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Mon Dec 14 19:32:31 2009 +0000 |
committer | Dan Gohman <gohman@apple.com> | Mon Dec 14 19:32:31 2009 +0000 |
tree | 113f44331f3ccf5b3f40778e82902213aa6aaa2f | |
parent | d196a58b557ba388241547c06d76f3a30085f4fc [diff] [blame] |
Micro-optimize these functions in the case where they are not inlined. llvm-svn: 91316
diff --git a/llvm/lib/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp index 31451cc..0c90e77 100644 --- a/llvm/lib/Support/raw_ostream.cpp +++ b/llvm/lib/Support/raw_ostream.cpp
@@ -209,8 +209,7 @@ } raw_ostream &raw_ostream::operator<<(double N) { - this->operator<<(ftostr(N)); - return *this; + return this->operator<<(ftostr(N)); }