reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/X86/AsmParser/X86AsmParser.cpp
 1675   if (Tok.isNot(AsmToken::Identifier))
 1676     return ErrorOperand(Tok.getLoc(), "Expected an identifier after {");
 1677   if (Tok.getIdentifier().startswith("r")){
 1678     int rndMode = StringSwitch<int>(Tok.getIdentifier())
 1685       return ErrorOperand(Tok.getLoc(), "Invalid rounding mode.");
 1688       return ErrorOperand(Tok.getLoc(), "Expected - at this point");
 1692       return ErrorOperand(Tok.getLoc(), "Expected } at this point");
 1693     SMLoc End = Tok.getEndLoc();
 1699   if(Tok.getIdentifier().equals("sae")){
 1702       return ErrorOperand(Tok.getLoc(), "Expected } at this point");
 1706   return ErrorOperand(Tok.getLoc(), "unknown token in expression");