[opaque pointer type] Add textual IR support for explicit type parameter to load...
[oota-llvm.git] / test / CodeGen / MSP430 / AddrMode-bis-rx.ll
index 532a25cc155e1ef70e4d2126d509c2d928a70efa..1b0a508d06e064caede0ccbc934b1a9690c14e58 100644 (file)
@@ -3,7 +3,7 @@ target datalayout = "e-p:16:16:16-i1:8:8-i8:8:8-i16:16:16-i32:16:16"
 target triple = "msp430-generic-generic"
 
 define i16 @am1(i16 %x, i16* %a) nounwind {
-       %1 = load i16* %a
+       %1 = load i16, i16* %a
        %2 = or i16 %1,%x
        ret i16 %2
 }
@@ -13,7 +13,7 @@ define i16 @am1(i16 %x, i16* %a) nounwind {
 @foo = external global i16
 
 define i16 @am2(i16 %x) nounwind {
-       %1 = load i16* @foo
+       %1 = load i16, i16* @foo
        %2 = or i16 %1,%x
        ret i16 %2
 }
@@ -24,7 +24,7 @@ define i16 @am2(i16 %x) nounwind {
 
 define i8 @am3(i8 %x, i16 %n) nounwind {
        %1 = getelementptr [2 x i8], [2 x i8]* @bar, i16 0, i16 %n
-       %2 = load i8* %1
+       %2 = load i8, i8* %1
        %3 = or i8 %2,%x
        ret i8 %3
 }
@@ -32,7 +32,7 @@ define i8 @am3(i8 %x, i16 %n) nounwind {
 ; CHECK:               bis.b   bar(r14), r15
 
 define i16 @am4(i16 %x) nounwind {
-       %1 = load volatile i16* inttoptr(i16 32 to i16*)
+       %1 = load volatile i16, i16* inttoptr(i16 32 to i16*)
        %2 = or i16 %1,%x
        ret i16 %2
 }
@@ -41,7 +41,7 @@ define i16 @am4(i16 %x) nounwind {
 
 define i16 @am5(i16 %x, i16* %a) nounwind {
        %1 = getelementptr i16, i16* %a, i16 2
-       %2 = load i16* %1
+       %2 = load i16, i16* %1
        %3 = or i16 %2,%x
        ret i16 %3
 }
@@ -52,7 +52,7 @@ define i16 @am5(i16 %x, i16* %a) nounwind {
 @baz = common global %S zeroinitializer, align 1
 
 define i16 @am6(i16 %x) nounwind {
-       %1 = load i16* getelementptr (%S* @baz, i32 0, i32 1)
+       %1 = load i16, i16* getelementptr (%S* @baz, i32 0, i32 1)
        %2 = or i16 %1,%x
        ret i16 %2
 }
@@ -65,7 +65,7 @@ define i16 @am6(i16 %x) nounwind {
 define i8 @am7(i8 %x, i16 %n) nounwind {
        %1 = getelementptr %T, %T* @duh, i32 0, i32 1
        %2 = getelementptr [2 x i8], [2 x i8]* %1, i16 0, i16 %n
-       %3= load i8* %2
+       %3= load i8, i8* %2
        %4 = or i8 %3,%x
        ret i8 %4
 }