Revert r131644; it's breaking the build.
[oota-llvm.git] / lib / MC / MCParser / DarwinAsmParser.cpp
index f01f866846d3eb3e5ca701d1c9f8a7f2529932f3..3c092cdb19bbf2a095a7abb711637c488233c20b 100644 (file)
@@ -435,10 +435,11 @@ bool DarwinAsmParser::ParseDirectiveSection(StringRef, SMLoc) {
 
   StringRef Segment, Section;
   unsigned StubSize;
-  unsigned TAA = 0;
+  unsigned TAA;
+  bool TAAParsed;
   std::string ErrorStr =
     MCSectionMachO::ParseSectionSpecifier(SectionSpec, Segment, Section,
-                                          TAA, StubSize);
+                                          TAA, TAAParsed, StubSize);
 
   if (!ErrorStr.empty())
     return Error(Loc, ErrorStr.c_str());