blob: 3fba05dd75b84b5c6862d64933ce85349f87d774 [file] [log] [blame]
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep div
define i32 @a(i16 zeroext %x, i32 %y) nounwind {
entry:
%conv = zext i16 %x to i32
%s = shl i32 2, %y
%d = sdiv i32 %conv, %s
ret i32 %d
}