2018-06-12 02:57:58 +08:00
|
|
|
; RUN: opt < %s -analyze -scalar-evolution | FileCheck %s
|
|
|
|
|
|
|
|
; Check that we convert
|
|
|
|
; zext((a * b)<nuw>)
|
|
|
|
; to
|
|
|
|
; (zext(a) * zext(b))<nuw>
|
|
|
|
|
|
|
|
declare i32 @get_int();
|
|
|
|
|
|
|
|
; Transform doesn't apply here, because %a lacks range metadata.
|
|
|
|
; CHECK-LABEL: @no_range
|
|
|
|
define void @no_range() {
|
|
|
|
%a = call i32 @get_int()
|
|
|
|
%b = mul i32 %a, 4
|
|
|
|
%c = zext i32 %b to i64
|
|
|
|
; CHECK: %c
|
|
|
|
; CHECK-NEXT: --> (zext i32 (4 * %a) to i64)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: @range
|
2018-07-07 07:20:35 +08:00
|
|
|
;
|
|
|
|
; This had to be disabled when r334428 was reverted. We should enable this test
|
|
|
|
; when r334428 is reapplied with a fix.
|
2018-06-12 02:57:58 +08:00
|
|
|
define void @range() {
|
2018-07-07 07:20:35 +08:00
|
|
|
%a = call i32 @get_int(), !range !0
|
2018-06-12 02:57:58 +08:00
|
|
|
%b = mul i32 %a, 4
|
|
|
|
%c = zext i32 %b to i64
|
|
|
|
; CHECK: %c
|
2018-07-07 07:20:35 +08:00
|
|
|
; CHECK-NEXT: --> (zext i32 (4 * %a) to i64)
|
2018-06-12 02:57:58 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-07-07 07:20:35 +08:00
|
|
|
!0 = !{i32 0, i32 100}
|