2011-02-01-Vector.ll 202 B

12345678
  1. ; RUN: opt < %s -instsimplify -S | FileCheck %s
  2. define <2 x i32> @sdiv(<2 x i32> %x) {
  3. ; CHECK-LABEL: @sdiv(
  4. %div = sdiv <2 x i32> %x, <i32 1, i32 1>
  5. ret <2 x i32> %div
  6. ; CHECK: ret <2 x i32> %x
  7. }