[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / NaryReassociate / pr35710.ll
blobedb21adc651c97929156414d7167932484a34700
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -passes=nary-reassociate -S | FileCheck %s
4 ; The test check that compilation does not fall into infinite loop.
6 define i8 @foo(i8 %v) local_unnamed_addr #0 {
7 ; CHECK-LABEL: @foo(
8 ; CHECK-NEXT:  region.0:
9 ; CHECK-NEXT:    [[TMP0:%.*]] = mul nsw i8 16, [[V:%.*]]
10 ; CHECK-NEXT:    [[TMP1:%.*]] = mul nsw i8 0, [[TMP0]]
11 ; CHECK-NEXT:    [[TMP2:%.*]] = mul nsw i8 1, [[TMP1]]
12 ; CHECK-NEXT:    ret i8 [[TMP2]]
14 region.0:
15   %0 = mul nsw i8 16, %v
16   %1 = mul nsw i8 0, %0
17   %2 = mul nsw i8 1, %1
18   ret i8 %2