mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-04 17:21:42 +00:00
[asan] Replace std::to_string with llvm::to_string
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@284557 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b3960e87ec
commit
97cd3dc16a
@ -14,6 +14,7 @@
|
|||||||
#include "llvm/ADT/SmallString.h"
|
#include "llvm/ADT/SmallString.h"
|
||||||
#include "llvm/IR/DebugInfo.h"
|
#include "llvm/IR/DebugInfo.h"
|
||||||
#include "llvm/Support/MathExtras.h"
|
#include "llvm/Support/MathExtras.h"
|
||||||
|
#include "llvm/Support/ScopedPrinter.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
@ -101,7 +102,7 @@ SmallString<64> ComputeASanStackFrameDescription(
|
|||||||
std::string Name = Var.Name;
|
std::string Name = Var.Name;
|
||||||
if (Var.Line) {
|
if (Var.Line) {
|
||||||
Name += ":";
|
Name += ":";
|
||||||
Name += std::to_string(Var.Line);
|
Name += to_string(Var.Line);
|
||||||
}
|
}
|
||||||
StackDescription << " " << Var.Offset << " " << Var.Size << " "
|
StackDescription << " " << Var.Offset << " " << Var.Size << " "
|
||||||
<< Name.size() << " " << Name;
|
<< Name.size() << " " << Name;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user