diff options
author | Zachary Turner <zturner@google.com> | 2016-05-11 17:54:20 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-05-11 17:54:20 +0000 |
commit | 3f61c1ab5eedcb8621060014f863579862a33e04 (patch) | |
tree | 338ac58ec8a260d263bb6a5aa38c0c6bb141bf05 | |
parent | ae3882a19a9b8341c707fd3c56f245d77068d269 (diff) | |
download | bcm5719-llvm-3f61c1ab5eedcb8621060014f863579862a33e04.tar.gz bcm5719-llvm-3f61c1ab5eedcb8621060014f863579862a33e04.zip |
Fix build breakage in DebugInfoCodeview
llvm-svn: 269217
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/TypeDumper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp b/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp index df9f8f244ba..b675d3c2c6d 100644 --- a/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp +++ b/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp @@ -520,7 +520,7 @@ void CVTypeDumperImpl::visitUdtSourceLineRecord(TypeLeafKind Leaf, void CVTypeDumperImpl::visitBuildInfoRecord(TypeLeafKind Leaf, BuildInfoRecord &Args) { - W.printNumber("NumArgs", Args.getArgs().size()); + W.printNumber("NumArgs", static_cast<uint32_t>(Args.getArgs().size())); ListScope Arguments(W, "Arguments"); for (auto Arg : Args.getArgs()) { |