
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
27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
// RUN: %clang_cc1 -no-opaque-pointers -triple x86_64-windows-msvc -debug-info-kind=limited -gcodeview -fdeclspec -S -emit-llvm %s -o - | FileCheck %s
|
|
|
|
struct Foo;
|
|
struct Bar;
|
|
|
|
__declspec(allocator) void *alloc_void(void);
|
|
__declspec(allocator) struct Foo *alloc_foo(void);
|
|
|
|
void call_alloc(void) {
|
|
struct Foo *p = alloc_void();
|
|
struct Foo *w = alloc_foo();
|
|
struct Foo *q = (struct Foo*)alloc_void();
|
|
struct Foo *r = (struct Foo*)(struct Bar*)alloc_void();
|
|
}
|
|
|
|
// CHECK-LABEL: define {{.*}}void @call_alloc
|
|
// CHECK: call i8* {{.*}}@alloc_void{{.*}} !heapallocsite [[DBG1:!.*]]
|
|
// CHECK: call %struct.Foo* {{.*}}@alloc_foo{{.*}} !heapallocsite [[DBG2:!.*]]
|
|
// CHECK: call i8* {{.*}}@alloc_void{{.*}} !heapallocsite [[DBG2]]
|
|
// CHECK: call i8* {{.*}}@alloc_void{{.*}} !heapallocsite [[DBG3:!.*]]
|
|
|
|
// CHECK: [[DBG2]] = !DICompositeType(tag: DW_TAG_structure_type,
|
|
// CHECK-SAME: name: "Foo"
|
|
// CHECK: [[DBG3]] = !DICompositeType(tag: DW_TAG_structure_type,
|
|
// CHECK-SAME: name: "Bar"
|
|
// CHECK: [[DBG1]] = !{}
|