Akira Hatanaka | 24e79e5 | 2012-08-03 22:57:02 +0000 | [diff] [blame] | 1 | ; RUN: llc -march=mipsel -mcpu=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* @i, align 4 |
| 10 | %conv = trunc i32 %0 to i16 |
| 11 | store i16 %conv, i16* @s, align 2 |
| 12 | %1 = load i32* @i, align 4 |
| 13 | %2 = load 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]* @.str, i32 0, i32 0), i32 %1, i32 %conv1) |
| 17 | ret i32 0 |
| 18 | } |
| 19 | |
| 20 | declare i32 @printf(i8*, ...) |