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] Better OR's for MVE compares
[llvm-core.git]
/
test
/
Transforms
/
InstSimplify
/
2011-02-01-Vector.ll
blob
3cbbf350ec1282eafc9fe755ac75f7dd17074aa4
1
; RUN: opt < %s -instsimplify -S | FileCheck %s
2
3
define <2 x i32> @sdiv(<2 x i32> %x) {
4
; CHECK-LABEL: @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
}