Pass in the context to the Attributes::get method.
authorBill Wendling <isanbard@gmail.com>
Tue, 16 Oct 2012 05:20:51 +0000 (05:20 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 16 Oct 2012 05:20:51 +0000 (05:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166007 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/CppBackend/CPPBackend.cpp

index 969afe56e963112b28c431de99c38cc98255afa3..61fb4e98ecd804628dd324cc7d732da56817f68e 100644 (file)
@@ -513,7 +513,7 @@ void CppWriter::printAttributes(const AttrListPtr &PAL,
       nl(Out);
       attrs.removeAttribute(Attributes::StackAlignment);
       assert(!attrs.hasAttributes() && "Unhandled attribute!");
-      Out << "PAWI.Attrs = Attributes::get(B);";
+      Out << "PAWI.Attrs = Attributes::get(mod->getContext(), B);";
       nl(Out);
       Out << "Attrs.push_back(PAWI);";
       nl(Out);