mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
MC/AsmParser: Report .stabs directive as unsupported.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116659 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
03a9fdf2e7
commit
138abae2a2
@ -236,6 +236,7 @@ public:
|
||||
AddDirectiveHandler<&GenericAsmParser::ParseDirectiveFile>(".file");
|
||||
AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLine>(".line");
|
||||
AddDirectiveHandler<&GenericAsmParser::ParseDirectiveLoc>(".loc");
|
||||
AddDirectiveHandler<&GenericAsmParser::ParseDirectiveStabs>(".stabs");
|
||||
|
||||
// Macro directives.
|
||||
AddDirectiveHandler<&GenericAsmParser::ParseDirectiveMacrosOnOff>(
|
||||
@ -253,6 +254,7 @@ public:
|
||||
bool ParseDirectiveFile(StringRef, SMLoc DirectiveLoc);
|
||||
bool ParseDirectiveLine(StringRef, SMLoc DirectiveLoc);
|
||||
bool ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc);
|
||||
bool ParseDirectiveStabs(StringRef, SMLoc DirectiveLoc);
|
||||
|
||||
bool ParseDirectiveMacrosOnOff(StringRef, SMLoc DirectiveLoc);
|
||||
bool ParseDirectiveMacro(StringRef, SMLoc DirectiveLoc);
|
||||
@ -2081,6 +2083,13 @@ bool GenericAsmParser::ParseDirectiveLoc(StringRef, SMLoc DirectiveLoc) {
|
||||
return false;
|
||||
}
|
||||
|
||||
/// ParseDirectiveStabs
|
||||
/// ::= .stabs string, number, number, number
|
||||
bool GenericAsmParser::ParseDirectiveStabs(StringRef Directive,
|
||||
SMLoc DirectiveLoc) {
|
||||
return TokError("unsupported directive '" + Directive + "'");
|
||||
}
|
||||
|
||||
/// ParseDirectiveMacrosOnOff
|
||||
/// ::= .macros_on
|
||||
/// ::= .macros_off
|
||||
|
Loading…
x
Reference in New Issue
Block a user