[PATCH] D141858: [clang][Interp] Fix Pointer::toAPValue() for expressions
Timm Bäder via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jan 16 09:07:58 PST 2023
tbaeder updated this revision to Diff 489581.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D141858/new/
https://reviews.llvm.org/D141858
Files:
clang/lib/AST/Interp/Pointer.cpp
Index: clang/lib/AST/Interp/Pointer.cpp
===================================================================
--- clang/lib/AST/Interp/Pointer.cpp
+++ clang/lib/AST/Interp/Pointer.cpp
@@ -105,6 +105,10 @@
if (isUnknownSizeArray()) {
IsOnePastEnd = false;
Offset = CharUnits::Zero();
+ } else if (Desc->asExpr()) {
+ // Pointer pointing to a an expression.
+ IsOnePastEnd = false;
+ Offset = CharUnits::Zero();
} else {
// TODO: compute the offset into the object.
Offset = CharUnits::Zero();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141858.489581.patch
Type: text/x-patch
Size: 546 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230116/f2d475e1/attachment-0001.bin>
More information about the cfe-commits
mailing list