mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
a62270de2c
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. llvm-svn: 358552
9 lines
202 B
LLVM
9 lines
202 B
LLVM
; RUN: opt < %s -instsimplify -S | FileCheck %s
|
|
|
|
define <2 x i32> @sdiv(<2 x i32> %x) {
|
|
; CHECK-LABEL: @sdiv(
|
|
%div = sdiv <2 x i32> %x, <i32 1, i32 1>
|
|
ret <2 x i32> %div
|
|
; CHECK: ret <2 x i32> %x
|
|
}
|