summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo
diff options
context:
space:
mode:
authorAdrian McCarthy <amccarth@google.com>2017-02-09 22:49:35 +0000
committerAdrian McCarthy <amccarth@google.com>2017-02-09 22:49:35 +0000
commitd6e091dcc5f9cc1e3de946fc7870af18818311c7 (patch)
treef7f41cb40ac14a394048caac156750a714d1127b /llvm/lib/DebugInfo
parent19a311a483ba7c4f7f856dda3c531c945139f767 (diff)
downloadbcm5719-llvm-d6e091dcc5f9cc1e3de946fc7870af18818311c7.tar.gz
bcm5719-llvm-d6e091dcc5f9cc1e3de946fc7870af18818311c7.zip
Fix build break from r294633.
llvm-svn: 294642
Diffstat (limited to 'llvm/lib/DebugInfo')
-rw-r--r--llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp b/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
index 0f28a5aec7b..aa74ab0a5a5 100644
--- a/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
+++ b/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
@@ -12,14 +12,14 @@
#include "llvm/ADT/STLExtras.h"
#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
#include "llvm/DebugInfo/PDB/PDBExtras.h"
+#include "llvm/DebugInfo/PDB/Native/NativeSession.h"
#include "llvm/Support/ConvertUTF.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
using namespace llvm::pdb;
-NativeRawSymbol::NativeRawSymbol(const NativeSession &PDBSession)
- : Session(PDBSession) {}
+NativeRawSymbol::NativeRawSymbol(const NativeSession &PDBSession) {}
void NativeRawSymbol::dump(raw_ostream &OS, int Indent) const {}
@@ -328,7 +328,7 @@ PDB_SymType NativeRawSymbol::getSymTag() const {
}
PDB_UniqueId NativeRawSymbol::getGuid() const {
- return {0, 0, 0, 0};
+ return {0};
}
int32_t NativeRawSymbol::getOffset() const {
OpenPOWER on IntegriCloud