mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 01:46:05 +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
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
// RUN: %clang_cc1 -no-opaque-pointers %s -emit-llvm -o - -O0 -triple spir-unknown-unknown | FileCheck %s
|
|
|
|
template <typename T>
|
|
struct S{
|
|
T a;
|
|
T foo();
|
|
};
|
|
|
|
template<typename T>
|
|
T S<T>::foo() { return a;}
|
|
|
|
// CHECK: %struct.S = type { i32 }
|
|
// CHECK: %struct.S.0 = type { i32 addrspace(4)* }
|
|
// CHECK: %struct.S.1 = type { i32 addrspace(1)* }
|
|
|
|
// CHECK: [[A1:%[.a-z0-9]+]] = addrspacecast %struct.S* %{{[a-z0-9]+}} to %struct.S addrspace(4)*
|
|
// CHECK: %call = call spir_func noundef i32 @_ZNU3AS41SIiE3fooEv(%struct.S addrspace(4)* {{[^,]*}} [[A1]]) #1
|
|
// CHECK: [[A2:%[.a-z0-9]+]] = addrspacecast %struct.S.0* %{{[a-z0-9]+}} to %struct.S.0 addrspace(4)*
|
|
// CHECK: %call1 = call spir_func noundef i32 addrspace(4)* @_ZNU3AS41SIPU3AS4iE3fooEv(%struct.S.0 addrspace(4)* {{[^,]*}} [[A2]]) #1
|
|
// CHECK: [[A3:%[.a-z0-9]+]] = addrspacecast %struct.S.1* %{{[a-z0-9]+}} to %struct.S.1 addrspace(4)*
|
|
// CHECK: %call2 = call spir_func noundef i32 addrspace(1)* @_ZNU3AS41SIPU3AS1iE3fooEv(%struct.S.1 addrspace(4)* {{[^,]*}} [[A3]]) #1
|
|
|
|
void bar(){
|
|
S<int> sint;
|
|
S<int*> sintptr;
|
|
S<__global int*> sintptrgl;
|
|
|
|
sint.foo();
|
|
sintptr.foo();
|
|
sintptrgl.foo();
|
|
}
|