add support for parsing and emitting .section directives. We can now parse

things like:
.section __TEXT,__cstring,cstring_literals




git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74058 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2009-06-24 04:43:34 +00:00
parent c69485e34d
commit 9a023f70b4
2 changed files with 38 additions and 1 deletions

View File

@@ -52,6 +52,10 @@ private:
bool ParseX86InstOperands(MCInst &Inst);
bool ParseX86Operand(X86Operand &Op);
bool ParseX86MemOperand(X86Operand &Op);
// Directive Parsing.
bool ParseDirectiveSection();
};
} // end namespace llvm