diff options
author | Alp Toker <alp@nuanti.com> | 2014-06-26 22:52:05 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-06-26 22:52:05 +0000 |
commit | e69170a11079504e1b20ec79296925f295dc01c0 (patch) | |
tree | 7c415eb6c14f0afb0e97e42d6ba2579dd897fb3a /llvm/utils/FileCheck/FileCheck.cpp | |
parent | 11c6f6165b76a42da7eaf4514e419be397d7fc44 (diff) | |
download | bcm5719-llvm-e69170a11079504e1b20ec79296925f295dc01c0.tar.gz bcm5719-llvm-e69170a11079504e1b20ec79296925f295dc01c0.zip |
Revert "Introduce a string_ostream string builder facilty"
Temporarily back out commits r211749, r211752 and r211754.
llvm-svn: 211814
Diffstat (limited to 'llvm/utils/FileCheck/FileCheck.cpp')
-rw-r--r-- | llvm/utils/FileCheck/FileCheck.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/utils/FileCheck/FileCheck.cpp b/llvm/utils/FileCheck/FileCheck.cpp index 2c33e6896b7..978e05f4f2c 100644 --- a/llvm/utils/FileCheck/FileCheck.cpp +++ b/llvm/utils/FileCheck/FileCheck.cpp @@ -458,7 +458,8 @@ void Pattern::PrintFailureInfo(const SourceMgr &SM, StringRef Buffer, // variable values. if (!VariableUses.empty()) { for (unsigned i = 0, e = VariableUses.size(); i != e; ++i) { - small_string_ostream<256> OS; + SmallString<256> Msg; + raw_svector_ostream OS(Msg); StringRef Var = VariableUses[i].first; if (Var[0] == '@') { std::string Value; |