================ @@ -827,6 +829,9 @@ bool ByteCodeExprGen<Emitter>::VisitArrayInitLoopExpr( template <class Emitter> bool ByteCodeExprGen<Emitter>::VisitOpaqueValueExpr(const OpaqueValueExpr *E) { + if (OpaqueExprs.contains(E)) + return this->emitGetLocal(*classify(E), OpaqueExprs[E], E); ---------------- tbaederr wrote:
Can `E` be of composite type? If so, we need to handle that. If not, you can just use `classifyPrim` instead. This code also potentially does two lookups. you should do `auto It = OpaqueExprs.find(E); It != OpaqueExprs.end()) {` https://github.com/llvm/llvm-project/pull/68039 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits