[LoongArch][Clang] Make the parameters and return value of {x,}vorn.v builti ns ...
[llvm-project.git] / clang / test / CodeGenCXX / debug-info-line-if-2.cpp
blob8ab96a7daf4c47009207bddebad076fb592e1417
1 // RUN: %clang_cc1 -debug-info-kind=limited -gno-column-info -triple=x86_64-pc-linux -emit-llvm %s -o - | FileCheck %s
3 // The important thing is that the compare and the conditional branch have
4 // locs with the same scope (the lexical block for the 'if'). By turning off
5 // column info, they end up with the same !dbg record, which halves the number
6 // of checks to verify the scope.
8 int c = 2;
10 int f() {
11 #line 100
12 if (int a = 5; a > c)
13 return 1;
14 return 0;
16 // CHECK-LABEL: define {{.*}} @_Z1fv()
17 // CHECK: = icmp {{.*}} !dbg [[F_CMP:![0-9]+]]
18 // CHECK-NEXT: br i1 {{.*}} !dbg [[F_CMP]]
20 int g() {
21 #line 200
22 if (int a = f())
23 return 2;
24 return 3;
26 // CHECK-LABEL: define {{.*}} @_Z1gv()
27 // CHECK: = icmp {{.*}} !dbg [[G_CMP:![0-9]+]]
28 // CHECK-NEXT: br i1 {{.*}} !dbg [[G_CMP]]
30 int h() {
31 #line 300
32 if (c > 3)
33 return 4;
34 return 5;
36 // CHECK-LABEL: define {{.*}} @_Z1hv()
37 // CHECK: = icmp {{.*}} !dbg [[H_CMP:![0-9]+]]
38 // CHECK-NEXT: br i1 {{.*}} !dbg [[H_CMP]]
40 // CHECK-DAG: [[F_CMP]] = !DILocation(line: 100, scope: [[F_SCOPE:![0-9]+]]
41 // CHECK-DAG: [[F_SCOPE]] = distinct !DILexicalBlock({{.*}} line: 100)
42 // CHECK-DAG: [[G_CMP]] = !DILocation(line: 200, scope: [[G_SCOPE:![0-9]+]]
43 // CHECK-DAG: [[G_SCOPE]] = distinct !DILexicalBlock({{.*}} line: 200)
44 // CHECK-DAG: [[H_CMP]] = !DILocation(line: 300, scope: [[H_SCOPE:![0-9]+]]
45 // CHECK-DAG: [[H_SCOPE]] = distinct !DILexicalBlock({{.*}} line: 300)