tbaeder marked 3 inline comments as done. tbaeder added inline comments.
================ Comment at: clang/lib/AST/Interp/ByteCodeEmitter.h:71 - /// Parameter indices. - llvm::DenseMap<const ParmVarDecl *, unsigned> Params; + /// Parameter indices. <AstNode*, pair<Offset, IsPrimitive>> + llvm::DenseMap<const ParmVarDecl *, ParamOffset> Params; ---------------- shafik wrote: > I don't understand the additional comment, It's supposed to be the types of the map, but I've removed the comment change locally. ================ Comment at: clang/lib/AST/Interp/Context.cpp:30 bool Context::isPotentialConstantExpr(State &Parent, const FunctionDecl *FD) { + llvm::errs() << __PRETTY_FUNCTION__ << "\n"; + FD->dump(); ---------------- shafik wrote: > left over debugging code? Yes ================ Comment at: clang/lib/AST/Interp/Context.cpp:56 bool Context::evaluateAsRValue(State &Parent, const Expr *E, APValue &Result) { + llvm::errs() << __PRETTY_FUNCTION__ << "\n"; + E->dump(); ---------------- shafik wrote: > Left over debugging code? Yes Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D153695/new/ https://reviews.llvm.org/D153695 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits