HomeSort by relevance Sort by last modified time
    Searched refs:ErrorLoc (Results 1 - 8 of 8) sorted by null

  /external/llvm/include/llvm/TableGen/
Error.h 26 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg);
31 LLVM_ATTRIBUTE_NORETURN void PrintFatalError(ArrayRef<SMLoc> ErrorLoc,
  /external/llvm/lib/TableGen/
Error.cpp 53 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) {
54 PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
70 void PrintFatalError(ArrayRef<SMLoc> ErrorLoc, const std::string &Msg) {
71 PrintError(ErrorLoc, Msg);
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 726 SMLoc ErrorLoc = IDLoc;
731 ErrorLoc = ((SystemZOperand*)Operands[ErrorInfo])->getStartLoc();
732 if (ErrorLoc == SMLoc())
733 ErrorLoc = IDLoc;
735 return Error(ErrorLoc, "invalid operand for instruction");
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 750 SMLoc ErrorLoc = IDLoc;
755 ErrorLoc = ((MipsOperand*) Operands[ErrorInfo])->getStartLoc();
756 if (ErrorLoc == SMLoc())
757 ErrorLoc = IDLoc;
760 return Error(ErrorLoc, "invalid operand for instruction");
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 870 SMLoc ErrorLoc = IDLoc;
875 ErrorLoc = ((PPCOperand*)Operands[ErrorInfo])->getStartLoc();
876 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
879 return Error(ErrorLoc, "invalid operand for instruction");
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 32 bool LLLexer::Error(LocTy ErrorLoc, const Twine &Msg) const {
33 ErrorInfo = SM.GetMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp     [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]

Completed in 180 milliseconds