xref: /aosp_15_r20/external/llvm/test/Transforms/InstSimplify/2011-02-01-Vector.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: opt < %s -instsimplify -S | FileCheck %s
2
3define <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}
9