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
[RISCV][VLOPT] Add vector narrowing integer right shift instructions to isSupportedIn...
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
PowerPC
/
big-endian-formal-args.ll
blob
868a2612e6cc1148fa7b1bbec079d065d6a3d47c
1
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu | FileCheck %s
2
3
declare void @bar(i64 %x, i64 %y)
4
5
; CHECK: li 3, 0
6
; CHECK: li 4, 2
7
; CHECK: li 5, 0
8
; CHECK: li 6, 3
9
10
define void @foo() {
11
call void @bar(i64 2, i64 3)
12
ret void
13
}