Mercurial > hg > CbC > CbC_llvm
diff clang/test/CodeGenCXX/debug-info-inheriting-constructor.cpp @ 207:2e18cbf3894f
LLVM12
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 08 Jun 2021 06:07:14 +0900 |
parents | 1d019706d866 |
children | c4bab56944e8 |
line wrap: on
line diff
--- a/clang/test/CodeGenCXX/debug-info-inheriting-constructor.cpp Mon May 25 11:55:54 2020 +0900 +++ b/clang/test/CodeGenCXX/debug-info-inheriting-constructor.cpp Tue Jun 08 06:07:14 2021 +0900 @@ -8,7 +8,7 @@ }; A::A(int i, ...) {} -// CHECK: define void @{{.*}}foo +// CHECK: define{{.*}} void @{{.*}}foo // CHECK-NOT: ret void // CHECK: call void @llvm.dbg.declare // CHECK-NOT: ret void @@ -19,7 +19,7 @@ // CHECK-DAG: ![[A:.*]] = distinct !DISubprogram(name: "A", linkageName: "_ZN1BCI11AEiz" void foo() { // CHECK-DAG: ![[LOC]] = !DILocation(line: 0, scope: ![[A]], inlinedAt: ![[INL:[0-9]+]]) -// CHECK-DAG: ![[INL]] = !DILocation(line: [[@LINE+1]], scope: ![[FOO]]) +// CHECK-DAG: ![[INL]] = !DILocation(line: [[@LINE+1]], column: 5, scope: ![[FOO]]) B b(0); -// CHECK: ![[NOINL]] = !DILocation(line: [[@LINE+1]], scope: !{{[0-9]+}}) +// CHECK: ![[NOINL]] = !DILocation(line: [[@LINE+1]], column: 1, scope: !{{[0-9]+}}) }