Fix the clang-wpa example.
[clang.git] / test / CodeGenCXX / debug-info-ctor.cpp
blobc31eebe163ca5aff9455fd8187c03f521a29e958
1 // RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
3 struct X {
4 X(int v);
6 int value;
7 };
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;