]> granicus.if.org Git - llvm/commitdiff
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.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213389 91177308-0d34-0410-b5e6-96231b3b80d8

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

index 0e6a8320702eea803039d0d28da43a1efc5b75ef..2e76074db774bd5f8db9bcc1a6743d2a8a71e115 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 41ce68bfe0a581e9ce559adf16201baec6f717cc..c4cea604b14626af1906370992c3856c5448b0da 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);
 }