[PATCH] D132832: [clang][Interp] Handle missing local initializers better
Erich Keane via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 29 06:36:06 PDT 2022
erichkeane added inline comments.
================
Comment at: clang/lib/AST/Interp/ByteCodeStmtGen.cpp:245
+
+ if (!Init)
+ return false;
----------------
Would be nice to test this before the work to allocate Offset?
================
Comment at: clang/lib/AST/Interp/Function.h:163
+ /// Flag to indicate if the function is done being
+ /// compile to bytecode.
+ bool IsFullyCompiled = false;
----------------
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132832/new/
https://reviews.llvm.org/D132832
More information about the cfe-commits
mailing list