2014-11-07 22:12:57 +00:00
|
|
|
; RUN: opt < %s -reassociate -dce -S | FileCheck %s
|
|
|
|
; PR12985
|
|
|
|
|
|
|
|
; Verify the nsw flags are preserved when converting shl to mul.
|
|
|
|
|
|
|
|
; CHECK-LABEL: @shl_to_mul_nsw(
|
|
|
|
; CHECK: %mul = mul i32 %i, -2147483648
|
2014-11-11 22:58:35 +00:00
|
|
|
; CHECK: add i32 %mul, 1
|
2014-11-07 22:12:57 +00:00
|
|
|
define i32 @shl_to_mul_nsw(i32 %i) {
|
|
|
|
entry:
|
|
|
|
%mul = shl nsw i32 %i, 31
|
|
|
|
%mul2 = add i32 %mul, 1
|
|
|
|
ret i32 %mul2
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: @shl_to_mul_nuw(
|
|
|
|
; CHECK: %mul = mul nuw i32 %i, 4
|
2014-11-11 22:58:35 +00:00
|
|
|
; CHECK: add i32 %mul, 1
|
2014-11-07 22:12:57 +00:00
|
|
|
define i32 @shl_to_mul_nuw(i32 %i) {
|
|
|
|
entry:
|
|
|
|
%mul = shl nuw i32 %i, 2
|
|
|
|
%mul2 = add i32 %mul, 1
|
|
|
|
ret i32 %mul2
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: @shl_to_mul_nuw_nsw(
|
|
|
|
; CHECK: %mul = mul nuw nsw i32 %i, 4
|
2014-11-11 22:58:35 +00:00
|
|
|
; CHECK: add i32 %mul, 1
|
2014-11-07 22:12:57 +00:00
|
|
|
define i32 @shl_to_mul_nuw_nsw(i32 %i) {
|
|
|
|
entry:
|
|
|
|
%mul = shl nuw nsw i32 %i, 2
|
|
|
|
%mul2 = add i32 %mul, 1
|
|
|
|
ret i32 %mul2
|
|
|
|
}
|