Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / 2006-05-02-InstrSched1.ll
blob8165395c7e6557368337c160056dc563fea05dea
1 ; REQUIRES: asserts
2 ; RUN: llc < %s -mtriple=i686-unknown-linux -relocation-model=static -stats 2>&1 | \
3 ; RUN:   grep asm-printer | grep 14
5 ; It's possible to schedule this in 14 instructions by avoiding
6 ; callee-save registers, but the scheduler isn't currently that
7 ; conervative with registers.
8 @size20 = external dso_local global i32         ; <ptr> [#uses=1]
9 @in5 = external dso_local global ptr            ; <ptr> [#uses=1]
11 define i32 @compare(ptr %a, ptr %b) nounwind {
12         %tmp.upgrd.1 = load i32, ptr @size20            ; <i32> [#uses=1]
13         %tmp.upgrd.2 = load ptr, ptr @in5               ; <ptr> [#uses=2]
14         %tmp3 = load i32, ptr %b                ; <i32> [#uses=1]
15         %gep.upgrd.3 = zext i32 %tmp3 to i64            ; <i64> [#uses=1]
16         %tmp4 = getelementptr i8, ptr %tmp.upgrd.2, i64 %gep.upgrd.3            ; <ptr> [#uses=2]
17         %tmp7 = load i32, ptr %a                ; <i32> [#uses=1]
18         %gep.upgrd.4 = zext i32 %tmp7 to i64            ; <i64> [#uses=1]
19         %tmp8 = getelementptr i8, ptr %tmp.upgrd.2, i64 %gep.upgrd.4            ; <ptr> [#uses=2]
20         %tmp.upgrd.5 = tail call i32 @memcmp( ptr %tmp8, ptr %tmp4, i32 %tmp.upgrd.1 )          ; <i32> [#uses=1]
21         ret i32 %tmp.upgrd.5
24 declare i32 @memcmp(ptr, ptr, i32)