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
[ARM] Adjust how NEON shifts are lowered
[llvm-core.git]
/
test
/
CodeGen
/
X86
/
pr26835.ll
blob
4fc73b8857575df319cc03c56abe233ea8535ec7
1
; RUN: llc < %s | FileCheck %s
2
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
3
target triple = "x86_64-pc-linux"
4
5
; CHECK-LABEL: foo
6
; CHECK: div
7
define i24 @foo(i24 %a, i24 %b) {
8
%r = urem i24 %a, %b
9
ret i24 %r
10
}