
Conversion done using the script at https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34. These are tests where the conversion worked out of the box and no manual fixup was performed.
15 lines
233 B
C++
15 lines
233 B
C++
// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
|
|
|
|
struct X {
|
|
X(int v);
|
|
|
|
int value;
|
|
};
|
|
|
|
X::X(int v) {
|
|
// CHECK_TEMPORARILY_DISABLED: call void @_ZN1XC2Ei(ptr %this1, i32 %tmp), !dbg
|
|
// TEMPORARY CHECK: X
|
|
value = v;
|
|
}
|
|
|