blob: ff87618575d6dc43a638c338554a8b3f43c2f5b2 [file] [log] [blame]
Reid Klecknerac385062015-05-18 22:46:30 +00001// RUN: %clang_cc1 -emit-llvm %s -o - -triple=powerpc-unknown-linux | FileCheck %s
2
3struct S {
4 S();
5 ~S();
6};
7
8void byval(S one, S two) {
9 one = two;
10}
11
12// CHECK: define void @_Z5byval1SS_(%struct.S* %one, %struct.S* %two)