This adds -no-opaque-pointers to clang tests whose output will change when opaque pointers are enabled by default. This is intended to be part of the migration approach described in https://discourse.llvm.org/t/enabling-opaque-pointers-by-default/61322/9. The patch has been produced by replacing %clang_cc1 with %clang_cc1 -no-opaque-pointers for tests that fail with opaque pointers enabled. Worth noting that this doesn't cover all tests, there's a remaining ~40 tests not using %clang_cc1 that will need a followup change. Differential Revision: https://reviews.llvm.org/D123115
28 lines
838 B
C++
28 lines
838 B
C++
// RUN: %clang_cc1 -no-opaque-pointers -std=c++20 %s -emit-llvm -o - -triple %itanium_abi_triple | FileCheck %s --implicit-check-not=DoNotEmit
|
|
|
|
// constexpr virtual functions can be called at runtime and go in the vtable as
|
|
// normal. But they are implicitly inline so are never the key function.
|
|
|
|
struct DoNotEmit {
|
|
virtual constexpr void f();
|
|
};
|
|
constexpr void DoNotEmit::f() {}
|
|
|
|
// CHECK-DAG: @_ZTV1B = {{.*}} constant { [3 x i8*] } { {{.*}} null, {{.*}} @_ZTI1B {{.*}} @_ZN1B1fEv
|
|
struct B {
|
|
// CHECK-DAG: define {{.*}} @_ZN1B1fEv
|
|
virtual constexpr void f() {}
|
|
};
|
|
B b;
|
|
|
|
struct CBase {
|
|
virtual constexpr void f(); // not key function
|
|
};
|
|
|
|
// CHECK-DAG: @_ZTV1C = {{.*}} constant {{.*}} null, {{.*}} @_ZTI1C {{.*}} @_ZN1C1fEv
|
|
struct C : CBase {
|
|
void f(); // key function
|
|
};
|
|
// CHECK-DAG: define {{.*}} @_ZN1C1fEv
|
|
void C::f() {}
|