projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Taints the non-acquire RMW's store address with the load part
[oota-llvm.git]
/
test
/
Transforms
/
InstCombine
/
2008-11-27-IDivVector.ll
1
; RUN: opt < %s -instcombine -S | not grep div
2
3
define <2 x i8> @f(<2 x i8> %x) {
4
%A = udiv <2 x i8> %x, <i8 1, i8 1>
5
ret <2 x i8> %A
6
}
7
8
define <2 x i8> @g(<2 x i8> %x) {
9
%A = sdiv <2 x i8> %x, <i8 1, i8 1>
10
ret <2 x i8> %A
11
}