mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
[llvm-pdbdump] Fix member initialization order warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230747 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
756b823064
commit
b6fca0bb37
@ -36,7 +36,7 @@
|
||||
using namespace llvm;
|
||||
|
||||
CompilandDumper::CompilandDumper(LinePrinter &P)
|
||||
: Printer(P), PDBSymDumper(true) {}
|
||||
: PDBSymDumper(true), Printer(P) {}
|
||||
|
||||
void CompilandDumper::dump(const PDBSymbolCompilandDetails &Symbol,
|
||||
raw_ostream &OS, int Indent) {}
|
||||
|
@ -14,7 +14,7 @@
|
||||
using namespace llvm;
|
||||
|
||||
LinePrinter::LinePrinter(int Indent, llvm::raw_ostream &Stream)
|
||||
: IndentSpaces(Indent), CurrentIndent(0), OS(Stream) {}
|
||||
: OS(Stream), IndentSpaces(Indent), CurrentIndent(0) {}
|
||||
|
||||
void LinePrinter::Indent() { CurrentIndent += IndentSpaces; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user