Home
last modified time | relevance | path

Searched defs:ByteCodeGenError (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/clang/lib/AST/Interp/
DByteCodeGenError.h21 struct ByteCodeGenError : public llvm::ErrorInfo<ByteCodeGenError> { struct
23 ByteCodeGenError(SourceLocation Loc) : Loc(Loc) {} in ByteCodeGenError() function
24 ByteCodeGenError(const Stmt *S) : ByteCodeGenError(S->getBeginLoc()) {} in ByteCodeGenError() argument
25 ByteCodeGenError(const Decl *D) : ByteCodeGenError(D->getBeginLoc()) {} in ByteCodeGenError() argument
27 void log(raw_ostream &OS) const override { OS << "unimplemented feature"; } in log()
29 const SourceLocation &getLoc() const { return Loc; } in getLoc()
31 static char ID;
38 std::error_code convertToErrorCode() const override { in convertToErrorCode()