mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-11 20:52:31 +00:00
Enable target dependent directive parsing to hook before standard parser in
AsmParser::ParseStatement. Patch by Vladimir Medic. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159768 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b0c76d72c3
commit
3b02d95d63
@ -1167,6 +1167,11 @@ bool AsmParser::ParseStatement() {
|
|||||||
|
|
||||||
// Otherwise, we have a normal instruction or directive.
|
// Otherwise, we have a normal instruction or directive.
|
||||||
if (IDVal[0] == '.' && IDVal != ".") {
|
if (IDVal[0] == '.' && IDVal != ".") {
|
||||||
|
|
||||||
|
// Target hook for parsing target specific directives.
|
||||||
|
if (!getTargetParser().ParseDirective(ID))
|
||||||
|
return false;
|
||||||
|
|
||||||
// Assembler features
|
// Assembler features
|
||||||
if (IDVal == ".set" || IDVal == ".equ")
|
if (IDVal == ".set" || IDVal == ".equ")
|
||||||
return ParseDirectiveSet(IDVal, true);
|
return ParseDirectiveSet(IDVal, true);
|
||||||
@ -1292,9 +1297,6 @@ bool AsmParser::ParseStatement() {
|
|||||||
if (Handler.first)
|
if (Handler.first)
|
||||||
return (*Handler.second)(Handler.first, IDVal, IDLoc);
|
return (*Handler.second)(Handler.first, IDVal, IDLoc);
|
||||||
|
|
||||||
// Target hook for parsing target specific directives.
|
|
||||||
if (!getTargetParser().ParseDirective(ID))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
return Error(IDLoc, "unknown directive");
|
return Error(IDLoc, "unknown directive");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user