Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:IDVal

518   bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
2466 StringRef IDVal = DirectiveID.getIdentifier();
2467 if (IDVal == ".word")
2469 else if (IDVal.startswith(".code"))
2470 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
2471 else if (IDVal.startswith(".att_syntax")) {
2474 } else if (IDVal.startswith(".intel_syntax")) {
2515 bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
2516 if (IDVal == ".code32") {
2522 } else if (IDVal == ".code64") {
2529 return Error(L, "unexpected directive " + IDVal);