FinishThunk, and the invariant of setting and then unsetting CurCodeDecl, was added in7f416cc426(2015). The invariant didn't exist when I added this musttail codepath inab2090d107(2014). Recently in28328c3771, I started using this codepath on non-Windows platforms, and users reported problems during release testing (PR44987). The issue was already present for users of EH on i686-windows-msvc, so I added a test for that case as well. Reviewed By: hans Differential Revision: https://reviews.llvm.org/D76444
30 lines
1.0 KiB
C++
30 lines
1.0 KiB
C++
// RUN: %clang_cc1 -fexceptions -fcxx-exceptions %s -triple=x86_64-pc-linux-gnu -munwind-tables -emit-llvm -o - -O1 -disable-llvm-passes | FileCheck %s
|
|
|
|
// When generating the thunk for secondary, do not push terminate scopes for
|
|
// either the varargs or non-varargs case. Related to PR44987.
|
|
|
|
struct A {
|
|
virtual void primary_key();
|
|
};
|
|
struct B {
|
|
virtual void secondary();
|
|
virtual void secondary_vararg(int, ...);
|
|
};
|
|
class C : A, B {
|
|
virtual void primary_key();
|
|
void secondary() noexcept;
|
|
void secondary_vararg(int, ...) noexcept;
|
|
};
|
|
void C::primary_key() {}
|
|
|
|
// CHECK-LABEL: define available_externally void @_ZThn8_N1C9secondaryEv(%class.C* %this)
|
|
// CHECK-NOT: invoke
|
|
// CHECK: tail call void @_ZN1C9secondaryEv(%class.C* %{{.*}})
|
|
// CHECK-NOT: invoke
|
|
// CHECK: ret void
|
|
|
|
// CHECK-LABEL: define available_externally void @_ZThn8_N1C16secondary_varargEiz(%class.C* %this, i32 %0, ...)
|
|
// CHECK-NOT: invoke
|
|
// CHECK: musttail call void (%class.C*, i32, ...) @_ZN1C16secondary_varargEiz(%class.C* %{{.*}}, i32 %{{.*}}, ...) #2
|
|
// CHECK-NEXT: ret void
|