[PATCH] D150040: [clang][Interp] Call invalid destructors
Timm Bäder via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat May 6 07:42:26 PDT 2023
tbaeder created this revision.
tbaeder added reviewers: aaron.ballman, erichkeane, tahonermann, shafik.
Herald added a project: All.
tbaeder requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
We need to call them like any other function, so we can generate proper
diagnostics.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D150040
Files:
clang/lib/AST/Interp/ByteCodeExprGen.cpp
clang/test/AST/Interp/records.cpp
Index: clang/test/AST/Interp/records.cpp
===================================================================
--- clang/test/AST/Interp/records.cpp
+++ clang/test/AST/Interp/records.cpp
@@ -590,6 +590,26 @@
return i;
}
static_assert(test() == 1);
+
+ struct S {
+ constexpr S() {}
+ constexpr ~S() { // expected-error {{never produces a constant expression}} \
+ // ref-error {{never produces a constant expression}}
+ int i = 1 / 0; // expected-warning {{division by zero}} \
+ // expected-note 2{{division by zero}} \
+ // ref-warning {{division by zero}} \
+ // ref-note 2{{division by zero}}
+ }
+ };
+ constexpr int testS() {
+ S{}; // ref-note {{in call to '&S{}->~S()'}}
+ return 1; // expected-note {{in call to '&S{}->~S()'}}
+ // FIXME: ^ Wrong line
+ }
+ static_assert(testS() == 1); // expected-error {{not an integral constant expression}} \
+ // expected-note {{in call to 'testS()'}} \
+ // ref-error {{not an integral constant expression}} \
+ // ref-note {{in call to 'testS()'}}
}
namespace BaseToDerived {
Index: clang/lib/AST/Interp/ByteCodeExprGen.cpp
===================================================================
--- clang/lib/AST/Interp/ByteCodeExprGen.cpp
+++ clang/lib/AST/Interp/ByteCodeExprGen.cpp
@@ -2290,8 +2290,7 @@
// Now emit the destructor and recurse into base classes.
if (const CXXDestructorDecl *Dtor = R->getDestructor();
Dtor && !Dtor->isTrivial()) {
- const Function *DtorFunc = getFunction(Dtor);
- if (DtorFunc && DtorFunc->isConstexpr()) {
+ if (const Function *DtorFunc = getFunction(Dtor)) {
assert(DtorFunc->hasThisPointer());
assert(DtorFunc->getNumParams() == 1);
if (!this->emitDupPtr(SourceInfo{}))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D150040.520092.patch
Type: text/x-patch
Size: 1921 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230506/9ad6790b/attachment.bin>
More information about the cfe-commits
mailing list