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