mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 19:26:06 +00:00

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
902 B
C++
28 lines
902 B
C++
// RUN: %clang_cc1 -no-opaque-pointers -triple amdgcn-amd-amdhsa -emit-llvm -O3 -fdeclspec \
|
|
// RUN: -disable-llvm-passes -o - %s | FileCheck %s
|
|
|
|
int get_x();
|
|
|
|
struct A {
|
|
__declspec(property(get = _get_x)) int x;
|
|
static int _get_x(void) {
|
|
return get_x();
|
|
};
|
|
};
|
|
|
|
extern const A a;
|
|
|
|
// CHECK-LABEL: define{{.*}} void @_Z4testv()
|
|
// CHECK: %i = alloca i32, align 4, addrspace(5)
|
|
// CHECK: %[[ii:.*]] = addrspacecast i32 addrspace(5)* %i to i32*
|
|
// CHECK: %[[cast:.*]] = bitcast i32 addrspace(5)* %i to i8 addrspace(5)*
|
|
// CHECK: call void @llvm.lifetime.start.p5i8(i64 4, i8 addrspace(5)* %[[cast]])
|
|
// CHECK: %call = call noundef i32 @_ZN1A6_get_xEv()
|
|
// CHECK: store i32 %call, i32* %[[ii]]
|
|
// CHECK: %[[cast2:.*]] = bitcast i32 addrspace(5)* %i to i8 addrspace(5)*
|
|
// CHECK: call void @llvm.lifetime.end.p5i8(i64 4, i8 addrspace(5)* %[[cast2]])
|
|
void test()
|
|
{
|
|
int i = a.x;
|
|
}
|