mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
Switch to SmallString::str from SmallString::c_str, and remove
SmallString::c_str. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79456 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -71,8 +71,8 @@ static void CrashHandler(void *Cookie) {
|
||||
}
|
||||
|
||||
if (!TmpStr.empty()) {
|
||||
__crashreporter_info__ = strdup(TmpStr.c_str());
|
||||
errs() << __crashreporter_info__;
|
||||
__crashreporter_info__ = strdup(std::string(TmpStr.str()).c_str());
|
||||
errs() << TmpStr.str();
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user