Home | History | Annotate | Download | only in AsmParser

Lines Matching defs:IDVal

69   bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
2055 StringRef IDVal = DirectiveID.getIdentifier();
2056 if (IDVal == ".word")
2058 else if (IDVal.startswith(".code"))
2059 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
2060 else if (IDVal.startswith(".att_syntax")) {
2063 } else if (IDVal.startswith(".intel_syntax")) {
2104 bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
2105 if (IDVal == ".code32") {
2111 } else if (IDVal == ".code64") {
2118 return Error(L, "unexpected directive " + IDVal);