forked from OSchip/llvm-project
llvm-objdump.cpp: Appease MSC16 x64. utostr(n++) causes internal compiler error.
llvm-svn: 182722
This commit is contained in:
parent
4cf437a1e9
commit
d5c2e60b19
|
@ -355,8 +355,9 @@ static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) {
|
|||
FI != FE; ++FI) {
|
||||
static int filenum = 0;
|
||||
emitDOTFile((Twine((*FI)->getName()) + "_" +
|
||||
utostr(filenum++) + ".dot").str().c_str(),
|
||||
utostr(filenum) + ".dot").str().c_str(),
|
||||
**FI, IP.get());
|
||||
++filenum;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue