repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs in register stack pass.
[llvm/zpu.git]
/
test
/
CodeGen
/
X86
/
i128-ret.ll
blob
277f4283328b623a06457ae9b44a8fcafbb2f582
1
; RUN: llc < %s -march=x86-64 | grep {movq 8(%rdi), %rdx}
2
; RUN: llc < %s -march=x86-64 | grep {movq (%rdi), %rax}
3
4
define i128 @test(i128 *%P) {
5
%A = load i128* %P
6
ret i128 %A
7
}
8