mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
llvm-objdump.cpp: Appease MSC16 x64. utostr(n++) causes internal compiler error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182722 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1907cad7c8
commit
d1c99b2aae
@ -355,8 +355,9 @@ static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
|
|||||||
FI != FE; ++FI) {
|
FI != FE; ++FI) {
|
||||||
static int filenum = 0;
|
static int filenum = 0;
|
||||||
emitDOTFile((Twine((*FI)->getName()) + "_" +
|
emitDOTFile((Twine((*FI)->getName()) + "_" +
|
||||||
utostr(filenum++) + ".dot").str().c_str(),
|
utostr(filenum) + ".dot").str().c_str(),
|
||||||
**FI, IP.get());
|
**FI, IP.get());
|
||||||
|
++filenum;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user