brintos

brintos / llvm-project-archived public Read only

0
0
Text · 704 B · b6d12f6 Raw
15 lines · cpp
1// RUN: %clang_cc1 -triple %itanium_abi_triple -debug-info-kind=limited -mllvm -no-discriminators -emit-llvm  %s -o - | FileCheck %s2 3struct C {4  ~C();5};6extern bool b;7// CHECK: call {{.*}}, !dbg [[DTOR_CALL1_LOC:![0-9]*]]8// CHECK: call {{.*}}, !dbg [[DTOR_CALL2_LOC:![0-9]*]]9// CHECK: [[FUN1:.*]] = distinct !DISubprogram(name: "fun1",{{.*}} DISPFlagDefinition10// CHECK: [[DTOR_CALL1_LOC]] = !DILocation(line: [[@LINE+1]], column: 15, scope: [[FUN1]])11void fun1() { b && (C(), 1); }12// CHECK: [[FUN2:.*]] = distinct !DISubprogram(name: "fun2",{{.*}} DISPFlagDefinition13// CHECK: [[DTOR_CALL2_LOC]] = !DILocation(line: [[@LINE+1]], column: 15, scope: [[FUN2]])14bool fun2() { return (C(), b) && 0; }15