Update call to the new syntax.
authorBill Wendling <isanbard@gmail.com>
Fri, 23 Nov 2012 11:05:35 +0000 (11:05 +0000)
committerBill Wendling <isanbard@gmail.com>
Fri, 23 Nov 2012 11:05:35 +0000 (11:05 +0000)
llvm-svn: 168512

llvm/lib/Target/CppBackend/CPPBackend.cpp

index 0f3efd8..5c90990 100644 (file)
@@ -518,7 +518,7 @@ void CppWriter::printAttributes(const AttrListPtr &PAL,
       Out << "Attrs.push_back(PAWI);";
       nl(Out);
     }
-    Out << name << "_PAL = AttrListPtr::get(Attrs);";
+    Out << name << "_PAL = AttrListPtr::get(mod->getContext(), Attrs);";
     nl(Out);
     out(); nl(Out);
     Out << '}'; nl(Out);