Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:IDVal

50   bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
1122 StringRef IDVal = DirectiveID.getIdentifier();
1123 if (IDVal == ".word")
1125 else if (IDVal.startswith(".code"))
1126 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
1157 bool X86ATTAsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
1158 if (IDVal == ".code32") {
1164 } else if (IDVal == ".code64") {
1171 return Error(L, "unexpected directive " + IDVal);