[Coverage] MCDC: Move findIndependencePairs deferred into MCDCRecord (#121188)
[llvm-project.git] / llvm / test / Analysis / MemorySSA / loop-rotate-valuemap.ll
blob25adfbf974f7c9af5f468d58d1171c6a5ff3e3d6
1 ; RUN: opt -passes=loop-rotate %s -S | FileCheck %s
2 ; REQUIRES: asserts
4 ; Check that loop rotate keeps proper mapping between cloned instructions,
5 ; otherwise, MemorySSA will assert.
7 ; CHECK-LABEL: @f
8 define void @f(i1 %arg) {
9 entry:
10   br label %for.body16
12 for.cond.cleanup15:                               ; preds = %for.body16
13   ret void
15 for.body16:                                       ; preds = %for.body16.for.body16_crit_edge, %entry
16   %call.i = tail call float @expf(float 0.000000e+00) #1
17   %0 = load ptr, ptr undef, align 8
18   br i1 %arg, label %for.cond.cleanup15, label %for.body16.for.body16_crit_edge
20 for.body16.for.body16_crit_edge:                  ; preds = %for.body16
21   %.pre = load float, ptr undef, align 8
22   br label %for.body16
25 declare float @expf(float)