Home | History | Annotate | Download | only in Mips
      1 ; RUN: llc  -march=mipsel -mattr=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16
      2 
      3 @i = global i32 97, align 4
      4 @s = common global i16 0, align 2
      5 @.str = private unnamed_addr constant [9 x i8] c"%i %hi \0A\00", align 1
      6 
      7 define i32 @main() nounwind {
      8 entry:
      9   %0 = load i32, i32* @i, align 4
     10   %conv = trunc i32 %0 to i16
     11   store i16 %conv, i16* @s, align 2
     12   %1 = load i32, i32* @i, align 4
     13   %2 = load i16, i16* @s, align 2
     14   %conv1 = sext i16 %2 to i32
     15 ; 16:	sh	${{[0-9]+}}, 0(${{[0-9]+}})
     16   %call = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([9 x i8], [9 x i8]* @.str, i32 0, i32 0), i32 %1, i32 %conv1)
     17   ret i32 0
     18 }
     19 
     20 declare i32 @printf(i8*, ...)
     21