1*11b41910SDávid Bolvanský; NOTE: Assertions have been autogenerated by utils/update_test_checks.py 2b280ee1dSBjorn Pettersson; RUN: opt < %s -passes=instsimplify -S | FileCheck %s 3cee313d2SEric Christopher 4cee313d2SEric Christopherdefine <2 x i32> @sdiv(<2 x i32> %x) { 5cee313d2SEric Christopher; CHECK-LABEL: @sdiv( 6*11b41910SDávid Bolvanský; CHECK-NEXT: ret <2 x i32> [[X:%.*]] 7*11b41910SDávid Bolvanský; 8cee313d2SEric Christopher %div = sdiv <2 x i32> %x, <i32 1, i32 1> 9cee313d2SEric Christopher ret <2 x i32> %div 10cee313d2SEric Christopher} 11