[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / Reassociate / commute.ll
blob760e51b05e1c3bdb989d97a968257ae52c7a336e
1 ; RUN: opt -reassociate -S < %s | FileCheck %s
3 declare void @use(i32)
5 define void @test1(i32 %x, i32 %y) {
6 ; CHECK-LABEL: test1
7 ; CHECK: mul i32 %y, %x
8 ; CHECK: mul i32 %y, %x
9 ; CHECK: sub i32 %1, %2
10 ; CHECK: call void @use(i32 %{{.*}})
11 ; CHECK: call void @use(i32 %{{.*}})
13   %1 = mul i32 %x, %y
14   %2 = mul i32 %y, %x
15   %3 = sub i32 %1, %2
16   call void @use(i32 %1)
17   call void @use(i32 %3)
18   ret void