llvm-mc: Fix darwin .section parsing. It was skipping the section name and a ','
authorDaniel Dunbar <daniel@zuster.org>
Tue, 11 Aug 2009 03:42:33 +0000 (03:42 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 11 Aug 2009 03:42:33 +0000 (03:42 +0000)
(and outputting a diagnostic pointing at the wrong place), all of which lead to
much confusion.

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

test/MC/AsmParser/directive_darwin_section.s [new file with mode: 0644]
tools/llvm-mc/AsmParser.cpp

diff --git a/test/MC/AsmParser/directive_darwin_section.s b/test/MC/AsmParser/directive_darwin_section.s
new file mode 100644 (file)
index 0000000..4fea2ea
--- /dev/null
@@ -0,0 +1,4 @@
+# RUN: llvm-mc -triple i386-apple-darwin9 %s | FileCheck %s
+
+# CHECK: .section __DWARF,__debug_frame,regular,debug
+       .section        __DWARF,__debug_frame,regular,debug
index 09ca3f2ef168c00462e3181725fe904f842f0111..b4fdd83f7bbd533eeda8221ef6aeffbfec7c896c 100644 (file)
@@ -688,14 +688,24 @@ bool AsmParser::ParseDirectiveSet() {
 /// FIXME: This should actually parse out the segment, section, attributes and
 /// sizeof_stub fields.
 bool AsmParser::ParseDirectiveDarwinSection() {
+  SMLoc Loc = Lexer.getLoc();
+
   StringRef SectionName;
+  if (ParseIdentifier(SectionName))
+    return Error(Loc, "expected identifier after '.section' directive");
+
+  // Verify there is a following comma.
+  if (!Lexer.is(AsmToken::Comma))
+    return TokError("unexpected token in '.section' directive");
 
-  if (Lexer.isNot(AsmToken::Identifier))
-    return TokError("expected identifier after '.section' directive");
-  
   std::string SectionSpec = SectionName;
+  SectionSpec += ",";
+
+  // Add all the tokens until the end of the line, ParseSectionSpecifier will
+  // handle this.
   StringRef EOL = Lexer.LexUntilEndOfStatement();
   SectionSpec.append(EOL.begin(), EOL.end());
+
   Lexer.Lex();
   if (Lexer.isNot(AsmToken::EndOfStatement))
     return TokError("unexpected token in '.section' directive");
@@ -709,7 +719,7 @@ bool AsmParser::ParseDirectiveDarwinSection() {
                                           TAA, StubSize);
   
   if (!ErrorStr.empty())
-    return TokError(ErrorStr.c_str());
+    return Error(Loc, ErrorStr.c_str());
   
   // FIXME: CACHE THESE.