
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.
13 lines
235 B
C++
13 lines
235 B
C++
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=powerpc-unknown-linux | FileCheck %s
|
|
|
|
struct S {
|
|
S();
|
|
~S();
|
|
};
|
|
|
|
void byval(S one, S two) {
|
|
one = two;
|
|
}
|
|
|
|
// CHECK: define{{.*}} void @_Z5byval1SS_(ptr noundef %one, ptr noundef %two)
|