Don't pass in a null pointer to std::string's ctor, an empty string

ref should produce an empty std::string.  This fixes PR7879.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111332 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2010-08-18 00:11:25 +00:00
parent dc65f22390
commit 7f7274ce7f

View File

@ -149,7 +149,10 @@ namespace llvm {
unsigned edit_distance(StringRef Other, bool AllowReplacements = true);
/// str - Get the contents as an std::string.
std::string str() const { return std::string(Data, Length); }
std::string str() const {
if (Data == 0) return "";
return std::string(Data, Length);
}
/// @}
/// @name Operator Overloads