1 ; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- | \
3 ; RUN: llc -verify-machineinstrs -code-model=small < %s -mtriple=ppc64-- | \
8 define ptr @test0(ptr %X, ptr %dest) nounwind {
9 %Y = getelementptr i32, ptr %X, i32 4
11 store i32 %A, ptr %dest
15 define ptr @test1(ptr %X, ptr %dest) nounwind {
16 %Y = getelementptr i32, ptr %X, i32 4
18 store i32 %A, ptr %dest
22 define ptr @test2(ptr %X, ptr %dest) nounwind {
23 %Y = getelementptr i16, ptr %X, i32 4
25 %B = sext i16 %A to i32
26 store i32 %B, ptr %dest
30 define ptr @test3(ptr %X, ptr %dest) nounwind {
31 %Y = getelementptr i16, ptr %X, i32 4
33 %B = zext i16 %A to i32
34 store i32 %B, ptr %dest
38 define ptr @test3a(ptr %X, ptr %dest) nounwind {
39 %Y = getelementptr i16, ptr %X, i32 4
41 %B = sext i16 %A to i64
42 store i64 %B, ptr %dest
46 define ptr @test4(ptr %X, ptr %dest) nounwind {
47 %Y = getelementptr i64, ptr %X, i32 4
49 store i64 %A, ptr %dest
53 define ptr @test5(ptr %X) nounwind {
54 %Y = getelementptr i16, ptr %X, i32 4
59 define ptr @test6(ptr %X, i64 %A) nounwind {
60 %Y = getelementptr i64, ptr %X, i32 4
65 define ptr @test7(ptr %X, i64 %A) nounwind {
66 store i64 %A, ptr @Glob