Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / Analysis / MemorySSA / loop-rotate-simplified-clone.ll
blob343c74c96f1dd1b800c653a38bf843b8fe972c19
1 ; RUN: opt -verify-memoryssa -passes=loop-rotate %s -S | FileCheck %s
2 ; REQUIRES: asserts
4 ; CHECK-LABEL: @test()
5 define dso_local void @test() {
6 entry:
7   br label %preheader
9 preheader:
10   br label %l39
12 l39:
13   %v40 = phi ptr [ @foo, %preheader ], [ %v43, %crit_edge ]
14   %v41 = call float %v40(float undef)
15   %v42 = load i32, ptr undef, align 8
16   br i1 undef, label %crit_edge, label %loopexit
18 crit_edge:
19   %v43 = load ptr, ptr undef, align 8
20   br label %l39
22 loopexit:
23   unreachable
26 ; Function Attrs: readnone
27 declare dso_local float @foo(float) #0 align 32
29 attributes #0 = { readnone }