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
40 lines
847 B
Plaintext
40 lines
847 B
Plaintext
// RUN: %clang_cc1 -no-opaque-pointers -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
// rdar://problem/9158302
|
|
// This should not use a memmove_collectable in non-GC mode.
|
|
namespace test0 {
|
|
struct A {
|
|
id x;
|
|
};
|
|
|
|
// CHECK: define{{.*}} [[A:%.*]]* @_ZN5test04testENS_1AE(
|
|
// CHECK: alloca
|
|
// CHECK-NEXT: getelementptr
|
|
// CHECK-NEXT: store
|
|
// CHECK-NEXT: [[CALL:%.*]] = call noalias noundef nonnull i8* @_Znwm(
|
|
// CHECK-NEXT: bitcast
|
|
// CHECK-NEXT: bitcast
|
|
// CHECK-NEXT: bitcast
|
|
// CHECK-NEXT: call void @llvm.memcpy.p0i8.p0i8.i64(
|
|
// CHECK-NEXT: ret
|
|
A *test(A a) {
|
|
return new A(a);
|
|
}
|
|
}
|
|
|
|
|
|
// rdar://9780211
|
|
@protocol bork
|
|
@end
|
|
|
|
namespace test1 {
|
|
template<typename T> struct RetainPtr {
|
|
RetainPtr() {}
|
|
};
|
|
|
|
|
|
RetainPtr<id<bork> > x;
|
|
RetainPtr<id> y;
|
|
|
|
}
|