Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / Mips / lhu1.ll
blob1d438b6093de703d20cfcd5955e02cf47820cb29
1 ; RUN: llc  -march=mipsel -mattr=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16
4 @s = global i16 255, align 2
5 @.str = private unnamed_addr constant [5 x i8] c"%i \0A\00", align 1
7 define i32 @main() nounwind {
8 entry:
9   %i = alloca i32, align 4
10   %0 = load i16, ptr @s, align 2
11   %conv = zext i16 %0 to i32
12 ; 16:   lhu     ${{[0-9]+}}, 0(${{[0-9]+}})
13   store i32 %conv, ptr %i, align 4
14   %1 = load i32, ptr %i, align 4
15   %call = call i32 (ptr, ...) @printf(ptr @.str, i32 %1)
16   ret i32 0
19 declare i32 @printf(ptr, ...)