[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / llvm / test / Transforms / NaryReassociate / nary-mul.ll
blobed8dee339ddce1b35e9de3cafdf22951f95d903c
1 ; RUN: opt < %s -passes=nary-reassociate -S | FileCheck %s
2 ; RUN: opt < %s -passes='nary-reassociate' -S | FileCheck %s
4 target datalayout = "e-i64:64-v16:16-v32:32-n16:32:64"
6 declare void @foo(i32)
8 ; CHECK-LABEL: @bar(
9 define void @bar(i32 %a, i32 %b, i32 %c) {
10   %1 = mul i32 %a, %c
11 ; CHECK: [[BASE:%[a-zA-Z0-9]+]] = mul i32 %a, %c
12   call void @foo(i32 %1)
13   %2 = mul i32 %a, %b
14   %3 = mul i32 %2, %c
15 ; CHECK: [[RESULT:%[a-zA-Z0-9]+]] = mul i32 [[BASE]], %b
16   call void @foo(i32 %3)
17 ; CHECK-NEXT: call void @foo(i32 [[RESULT]])
18   ret void