mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 22:16: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
45 lines
1.6 KiB
C++
45 lines
1.6 KiB
C++
// RUN: %clang_cc1 -no-opaque-pointers -emit-llvm -debug-info-kind=limited -gno-column-info -triple x86_64-apple-macosx10.9.0 -funwind-tables=2 -std=c++11 -fcxx-exceptions -fexceptions %s -o - | FileCheck -allow-deprecated-dag-overlap %s
|
|
|
|
// Test that emitting a landing pad does not affect the line table
|
|
// entries for the code that triggered it.
|
|
|
|
// CHECK: call void @llvm.dbg.declare
|
|
// CHECK: call void @llvm.dbg.declare(metadata {{.*}}, metadata ![[CURRENT_ADDR:.*]], metadata !{{.*}}), !dbg ![[DBG1:.*]]
|
|
// CHECK: unwind label %{{.*}}, !dbg ![[DBG1]]
|
|
// CHECK: store i64 %{{.*}}, i64* %current_address, align 8, !dbg ![[DBG4:.*]]
|
|
// CHECK-NEXT: call void @llvm.dbg.declare(metadata {{.*}}, metadata ![[FOUND_IT:.*]], metadata !{{.*}}), !dbg ![[DBG2:.*]]
|
|
// CHECK: = landingpad
|
|
// CHECK-NEXT: cleanup, !dbg ![[DBG3:.*]]
|
|
// CHECK-DAG: ![[CURRENT_ADDR]] = {{.*}}name: "current_address"
|
|
// CHECK-DAG: ![[FOUND_IT]] = {{.*}}name: "found_it"
|
|
// CHECK-DAG: ![[DBG1]] = !DILocation(line: 256,
|
|
// CHECK-DAG: ![[DBG2]] = !DILocation(line: 257,
|
|
// CHECK-DAG: ![[DBG3]] = !DILocation(line: 268,
|
|
// CHECK-DAG: ![[DBG4]] = !DILocation(line: 256,
|
|
typedef unsigned long long uint64_t;
|
|
template<class _Tp> class shared_ptr {
|
|
public:
|
|
typedef _Tp element_type;
|
|
element_type* __ptr_;
|
|
~shared_ptr();
|
|
element_type* operator->() const noexcept {return __ptr_;}
|
|
};
|
|
class Context {
|
|
public:
|
|
uint64_t GetIt();
|
|
};
|
|
class Foo
|
|
{
|
|
bool bar();
|
|
virtual shared_ptr<Context> GetContext () = 0;
|
|
};
|
|
# 253 "Foo.cpp" 3
|
|
bool
|
|
Foo::bar ()
|
|
{
|
|
uint64_t current_address = GetContext()->GetIt();
|
|
bool found_it = false;
|
|
# 267 "Foo.cpp" 3
|
|
return found_it;
|
|
}
|