Searched defs:ErrorLoc (Results 1 - 5 of 5) sorted by relevance
/external/llvm/lib/TableGen/ |
H A D | Error.cpp | 50 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) { argument 51 PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
|
/external/llvm/lib/AsmParser/ |
H A D | LLLexer.cpp | 31 bool LLLexer::Error(LocTy ErrorLoc, const Twine &Msg) const { argument 32 ErrorInfo = SM.GetMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
|
/external/llvm/lib/Target/MBlaze/AsmParser/ |
H A D | MBlazeAsmParser.cpp | 339 SMLoc ErrorLoc = IDLoc; local 344 ErrorLoc = ((MBlazeOperand*)Operands[ErrorInfo])->getStartLoc(); 345 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc; 348 return Error(ErrorLoc, "invalid operand for instruction");
|
/external/llvm/lib/Target/Mips/AsmParser/ |
H A D | MipsAsmParser.cpp | 296 SMLoc ErrorLoc = IDLoc; local 301 ErrorLoc = ((MipsOperand*)Operands[ErrorInfo])->getStartLoc(); 302 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc; 305 return Error(ErrorLoc, "invalid operand for instruction");
|
/external/llvm/lib/Target/ARM/AsmParser/ |
H A D | ARMAsmParser.cpp | 7518 SMLoc ErrorLoc = IDLoc; local 7523 ErrorLoc = ((ARMOperand*)Operands[ErrorInfo])->getStartLoc(); 7524 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc; 7527 return Error(ErrorLoc, "invalid operand for instruction"); 7541 SMLoc ErrorLoc = ((ARMOperand*)Operands[ErrorInfo])->getStartLoc(); local 7542 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc; 7543 return Error(ErrorLoc, "immediate operand must be in the range [0,15]");
|
Completed in 1112 milliseconds