repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Forbid arrays of function-type and structures with function-typed fields.
[llvm/avr.git]
/
test
/
CodeGen
/
PowerPC
/
big-endian-actual-args.ll
blob
009f46811e78ce8e1ab78345a6be3d35d46d4cba
1
; RUN: llc < %s -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
2
; RUN: grep {addc 4, 4, 6}
3
; RUN: llc < %s -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
4
; RUN: grep {adde 3, 3, 5}
5
6
define i64 @foo(i64 %x, i64 %y) {
7
%z = add i64 %x, %y
8
ret i64 %z
9
}