HomeSort by relevance Sort by last modified time
    Searched refs:ErrorLoc (Results 1 - 7 of 7) 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 47 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) {
48 PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
64 void PrintFatalError(ArrayRef<SMLoc> ErrorLoc, const std::string &Msg) {
65 PrintError(ErrorLoc, Msg);
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 340 SMLoc ErrorLoc = IDLoc;
345 ErrorLoc = ((MBlazeOperand*)Operands[ErrorInfo])->getStartLoc();
346 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
349 return Error(ErrorLoc, "invalid operand for instruction");
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 567 SMLoc ErrorLoc = IDLoc;
572 ErrorLoc = ((MipsOperand*)Operands[ErrorInfo])->getStartLoc();
573 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
576 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 261 milliseconds