Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Analysis / ScalarEvolution / trunc-simplify.ll
blobf26478cb13fa32120ea38d4fd1341d1ced3a43c9
1 ; RUN: opt < %s -disable-output "-passes=print<scalar-evolution>" 2>&1 | FileCheck %s
3 ; Check that we convert
4 ;   trunc(C * a) -> trunc(C) * trunc(a)
5 ; if C is a constant.
6 ; CHECK-LABEL: @trunc_of_mul
7 define i8 @trunc_of_mul(i32 %a) {
8   %b = mul i32 %a, 100
9   ; CHECK: %c
10   ; CHECK-NEXT: --> (100 * (trunc i32 %a to i8))
11   %c = trunc i32 %b to i8
12   ret i8 %c
15 ; Check that we convert
16 ;   trunc(C + a) -> trunc(C) + trunc(a)
17 ; if C is a constant.
18 ; CHECK-LABEL: @trunc_of_add
19 define i8 @trunc_of_add(i32 %a) {
20   %b = add i32 %a, 100
21   ; CHECK: %c
22   ; CHECK-NEXT: --> (100 + (trunc i32 %a to i8))
23   %c = trunc i32 %b to i8
24   ret i8 %c
27 ; Check that we truncate to zero values assumed to have at least as many
28 ; trailing zeros as the target type.
29 ; CHECK-LABEL: @trunc_to_assumed_zeros
30 define i8 @trunc_to_assumed_zeros(ptr %p) {
31   %a = load i32, ptr %p
32   %and = and i32 %a, 255
33   %cmp = icmp eq i32 %and, 0
34   tail call void @llvm.assume(i1 %cmp)
35   ; CHECK: %c
36   ; CHECK-NEXT: --> 0
37   %c = trunc i32 %a to i8
38   ; CHECK: %d
39   ; CHECK-NEXT: --> false
40   %d = trunc i32 %a to i1
41   ; CHECK: %e
42   ; CHECK-NEXT: --> (trunc i32 %a to i16)
43   %e = trunc i32 %a to i16
44   ret i8 %c
47 declare void @llvm.assume(i1 noundef) nofree nosync nounwind willreturn