mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Fix a compilation failure on non-MSVC compilers.
llvm-svn: 343952
This commit is contained in:
parent
8776469f14
commit
a47e8584e7
@ -261,7 +261,7 @@ Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR,
|
||||
|
||||
Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR,
|
||||
Compile3Sym &Compile3) {
|
||||
W.printEnum("Language", Compile3.getLanguage(), getSourceLanguageNames());
|
||||
W.printEnum("Language", uint8_t(Compile3.getLanguage()), getSourceLanguageNames());
|
||||
W.printFlags("Flags", uint32_t(Compile3.getFlags()),
|
||||
getCompileSym3FlagNames());
|
||||
W.printEnum("Machine", unsigned(Compile3.Machine), getCPUTypeNames());
|
||||
|
Loading…
Reference in New Issue
Block a user