Sign in
cobalt
/
cobalt
/
6c3b32a7dc6eaf2946073e6fa29281b8cb58f1e3
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
test
/
CodeGenCXX
/
powerpc-byval.cpp
blob: ff87618575d6dc43a638c338554a8b3f43c2f5b2 [
file
] [
log
] [
blame
]
// 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_(%struct.S* %one, %struct.S* %two)