repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
powerpc-byval.cpp
blob
1f0488b2a81f7191e4cb07762fac4c59d2e25280
1
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=powerpc-unknown-linux | FileCheck %s
2
3
struct
S
{
4
S
();
5
~
S
();
6
};
7
8
void
byval
(
S one
,
S two
) {
9
one
=
two
;
10
}
11
12
// CHECK: define{{.*}} void @_Z5byval1SS_(ptr noundef %one, ptr noundef %two)