repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
When removing a function from the function set and adding it to deferred, we
[llvm.git]
/
test
/
Transforms
/
InstSimplify
/
2011-02-01-Vector.ll
blob
3039a663fa45e51acbc3f757e16e6fe48f232f66
1
; RUN: opt < %s -instsimplify -S | FileCheck %s
2
3
define <2 x i32> @sdiv(<2 x i32> %x) {
4
; CHECK: @sdiv
5
%div = sdiv <2 x i32> %x, <i32 1, i32 1>
6
ret <2 x i32> %div
7
; CHECK: ret <2 x i32> %x
8
}