Fix build failure on windows
authorDavid Peixotto <dpeixott@codeaurora.org>
Fri, 18 Jul 2014 16:41:58 +0000 (16:41 +0000)
committerDavid Peixotto <dpeixott@codeaurora.org>
Fri, 18 Jul 2014 16:41:58 +0000 (16:41 +0000)
Add explicit constructor to struct instead of using brace initialization.

llvm-svn: 213389

llvm/include/llvm/MC/ConstantPools.h
llvm/lib/MC/ConstantPools.cpp

index 0e6a832..2e76074 100644 (file)
@@ -24,6 +24,8 @@ class MCStreamer;
 class MCSymbol;
 
 struct ConstantPoolEntry {
+  ConstantPoolEntry(MCSymbol *L, const MCExpr *Val, unsigned Sz)
+    : Label(L), Value(Val), Size(Sz) {}
   MCSymbol *Label;
   const MCExpr *Value;
   unsigned Size;
index 41ce68b..c4cea60 100644 (file)
@@ -39,7 +39,7 @@ const MCExpr *ConstantPool::addEntry(const MCExpr *Value, MCContext &Context,
                                      unsigned Size) {
   MCSymbol *CPEntryLabel = Context.CreateTempSymbol();
 
-  Entries.push_back( { CPEntryLabel, Value, Size } );
+  Entries.push_back(ConstantPoolEntry(CPEntryLabel, Value, Size));
   return MCSymbolRefExpr::Create(CPEntryLabel, Context);
 }