xref: /aosp_15_r20/external/clang/test/CodeGenCXX/debug-info-ctor.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
2 
3 struct X {
4   X(int v);
5 
6   int value;
7 };
8 
X(int v)9 X::X(int v) {
10   // CHECK_TEMPORARILY_DISABLED: call void @_ZN1XC2Ei(%struct.X* %this1, i32 %tmp), !dbg
11   // TEMPORARY CHECK: X
12   value = v;
13 }
14 
15