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
87 lines
1.5 KiB
C++
87 lines
1.5 KiB
C++
// RUN: %clang_cc1 -no-opaque-pointers -emit-llvm %s -o - -triple=x86_64-apple-darwin10 | FileCheck %s
|
|
|
|
// PR5392
|
|
namespace PR5392 {
|
|
struct A
|
|
{
|
|
static int a;
|
|
};
|
|
|
|
A a1;
|
|
void f()
|
|
{
|
|
// CHECK: store i32 10, i32* @_ZN6PR53921A1aE
|
|
a1.a = 10;
|
|
// CHECK: store i32 20, i32* @_ZN6PR53921A1aE
|
|
A().a = 20;
|
|
}
|
|
|
|
}
|
|
|
|
struct A {
|
|
A();
|
|
~A();
|
|
enum E { Foo };
|
|
};
|
|
|
|
A *g();
|
|
|
|
void f(A *a) {
|
|
A::E e1 = a->Foo;
|
|
|
|
// CHECK: call noundef %struct.A* @_Z1gv()
|
|
A::E e2 = g()->Foo;
|
|
// CHECK: call void @_ZN1AC1Ev(
|
|
// CHECK: call void @_ZN1AD1Ev(
|
|
A::E e3 = A().Foo;
|
|
}
|
|
|
|
namespace test3 {
|
|
struct A {
|
|
static int foo();
|
|
};
|
|
int f() {
|
|
return A().foo();
|
|
}
|
|
}
|
|
|
|
namespace test4 {
|
|
struct A {
|
|
int x;
|
|
};
|
|
struct B {
|
|
int x;
|
|
void foo();
|
|
};
|
|
struct C : A, B {
|
|
};
|
|
|
|
extern C *c_ptr;
|
|
|
|
// CHECK-LABEL: define{{.*}} i32 @_ZN5test44testEv()
|
|
int test() {
|
|
// CHECK: load {{.*}} @_ZN5test45c_ptrE
|
|
// CHECK-NEXT: bitcast
|
|
// CHECK-NEXT: getelementptr
|
|
// CHECK-NEXT: bitcast
|
|
// CHECK-NEXT: call void @_ZN5test41B3fooEv
|
|
c_ptr->B::foo();
|
|
|
|
// CHECK: load {{.*}} @_ZN5test45c_ptrE
|
|
// CHECK-NEXT: bitcast
|
|
// CHECK-NEXT: getelementptr
|
|
// CHECK-NEXT: bitcast
|
|
// CHECK-NEXT: getelementptr
|
|
// CHECK-NEXT: store i32 5
|
|
c_ptr->B::x = 5;
|
|
|
|
// CHECK: load {{.*}} @_ZN5test45c_ptrE
|
|
// CHECK-NEXT: bitcast
|
|
// CHECK-NEXT: getelementptr
|
|
// CHECK-NEXT: bitcast
|
|
// CHECK-NEXT: getelementptr
|
|
// CHECK-NEXT: load i32, i32*
|
|
return c_ptr->B::x;
|
|
}
|
|
}
|