2011-02-01 08:39:12 +00:00
|
|
|
; RUN: opt < %s -instsimplify -S | FileCheck %s
|
|
|
|
|
|
|
|
define <2 x i32> @sdiv(<2 x i32> %x) {
|
2013-07-14 01:42:54 +00:00
|
|
|
; CHECK-LABEL: @sdiv(
|
2011-02-01 08:39:12 +00:00
|
|
|
%div = sdiv <2 x i32> %x, <i32 1, i32 1>
|
|
|
|
ret <2 x i32> %div
|
|
|
|
; CHECK: ret <2 x i32> %x
|
|
|
|
}
|