repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[InstCombine] Signed saturation patterns
[llvm-core.git]
/
test
/
CodeGen
/
X86
/
i128-ret.ll
blob
1d76471225e21186df0de605441c3feb7b26af38
1
; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
2
; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s
3
; CHECK: movq ([[A0:%rdi|%rcx]]), %rax
4
; CHECK: movq 8([[A0]]), %rdx
5
6
define i128 @test(i128 *%P) {
7
%A = load i128, i128* %P
8
ret i128 %A
9
}
10