blob: ca5341cfdd028973eceb985bfd3f502d889cfd50 [file] [log] [blame]
// RUN: %clang_cc1 -no-opaque-pointers -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_(%struct.S* noundef %one, %struct.S* noundef %two)