[PATCH] D147840: [clang][Interp] Handle DiscardResult for DeclRef- and ParenExprs
Timm Bäder via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 21 02:33:43 PDT 2023
tbaeder updated this revision to Diff 515660.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D147840/new/
https://reviews.llvm.org/D147840
Files:
clang/lib/AST/Interp/ByteCodeExprGen.cpp
clang/test/AST/Interp/literals.cpp
Index: clang/test/AST/Interp/literals.cpp
===================================================================
--- clang/test/AST/Interp/literals.cpp
+++ clang/test/AST/Interp/literals.cpp
@@ -780,4 +780,18 @@
return F{12}.a;
}
static_assert(ignoredDecls() == 12, "");
+
+struct A{};
+constexpr int ignoredExprs() {
+ (void)(1 / 2);
+ A a;
+ a; // expected-warning {{unused}} \
+ // ref-warning {{unused}}
+ (void)a;
+ (a); // expected-warning {{unused}} \
+ // ref-warning {{unused}}
+
+ return 0;
+}
+
#endif
Index: clang/lib/AST/Interp/ByteCodeExprGen.cpp
===================================================================
--- clang/lib/AST/Interp/ByteCodeExprGen.cpp
+++ clang/lib/AST/Interp/ByteCodeExprGen.cpp
@@ -231,7 +231,12 @@
template <class Emitter>
bool ByteCodeExprGen<Emitter>::VisitParenExpr(const ParenExpr *PE) {
- return this->visit(PE->getSubExpr());
+ const Expr *SubExpr = PE->getSubExpr();
+
+ if (DiscardResult)
+ return this->discard(SubExpr);
+
+ return this->visit(SubExpr);
}
template <class Emitter>
@@ -1996,6 +2001,9 @@
template <class Emitter>
bool ByteCodeExprGen<Emitter>::VisitDeclRefExpr(const DeclRefExpr *E) {
+ if (DiscardResult)
+ return true;
+
const auto *D = E->getDecl();
if (const auto *ECD = dyn_cast<EnumConstantDecl>(D)) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D147840.515660.patch
Type: text/x-patch
Size: 1324 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230421/aac46f58/attachment.bin>
More information about the cfe-commits
mailing list