X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FMSP430%2FAddrMode-bis-xr.ll;h=4b8f367a8880ed4044c76ccc19ab097e0be01cf5;hb=813f44a29fd0fd140127023222d0633e23783bcc;hp=06a3d32d8aa4cfef619a3e18e738b8011b3bd127;hpb=8b2b8a18354546d534b72f912153a3252ab4b857;p=oota-llvm.git diff --git a/test/CodeGen/MSP430/AddrMode-bis-xr.ll b/test/CodeGen/MSP430/AddrMode-bis-xr.ll index 06a3d32d8aa..4b8f367a888 100644 --- a/test/CodeGen/MSP430/AddrMode-bis-xr.ll +++ b/test/CodeGen/MSP430/AddrMode-bis-xr.ll @@ -3,7 +3,7 @@ target datalayout = "e-p:16:16:16-i8:8:8-i16:16:16-i32:16:16" target triple = "msp430-generic-generic" define void @am1(i16* %a, i16 %x) nounwind { - %1 = load i16* %a + %1 = load i16, i16* %a %2 = or i16 %x, %1 store i16 %2, i16* %a ret void @@ -14,7 +14,7 @@ define void @am1(i16* %a, i16 %x) nounwind { @foo = external global i16 define void @am2(i16 %x) nounwind { - %1 = load i16* @foo + %1 = load i16, i16* @foo %2 = or i16 %x, %1 store i16 %2, i16* @foo ret void @@ -25,8 +25,8 @@ define void @am2(i16 %x) nounwind { @bar = external global [2 x i8] define void @am3(i16 %i, i8 %x) nounwind { - %1 = getelementptr [2 x i8]* @bar, i16 0, i16 %i - %2 = load i8* %1 + %1 = getelementptr [2 x i8], [2 x i8]* @bar, i16 0, i16 %i + %2 = load i8, i8* %1 %3 = or i8 %x, %2 store i8 %3, i8* %1 ret void @@ -35,7 +35,7 @@ define void @am3(i16 %i, i8 %x) nounwind { ; CHECK: bis.b r14, bar(r15) define void @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 %x, %1 store volatile i16 %2, i16* inttoptr(i16 32 to i16*) ret void @@ -44,8 +44,8 @@ define void @am4(i16 %x) nounwind { ; CHECK: bis.w r15, &32 define void @am5(i16* %a, i16 %x) readonly { - %1 = getelementptr inbounds i16* %a, i16 2 - %2 = load i16* %1 + %1 = getelementptr inbounds i16, i16* %a, i16 2 + %2 = load i16, i16* %1 %3 = or i16 %x, %2 store i16 %3, i16* %1 ret void @@ -57,9 +57,9 @@ define void @am5(i16* %a, i16 %x) readonly { @baz = common global %S zeroinitializer define void @am6(i16 %x) nounwind { - %1 = load i16* getelementptr (%S* @baz, i32 0, i32 1) + %1 = load i16, i16* getelementptr (%S, %S* @baz, i32 0, i32 1) %2 = or i16 %x, %1 - store i16 %2, i16* getelementptr (%S* @baz, i32 0, i32 1) + store i16 %2, i16* getelementptr (%S, %S* @baz, i32 0, i32 1) ret void } ; CHECK-LABEL: am6: @@ -69,9 +69,9 @@ define void @am6(i16 %x) nounwind { @duh = external global %T define void @am7(i16 %n, i8 %x) nounwind { - %1 = getelementptr %T* @duh, i32 0, i32 1 - %2 = getelementptr [2 x i8]* %1, i16 0, i16 %n - %3 = load i8* %2 + %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, i8* %2 %4 = or i8 %x, %3 store i8 %4, i8* %2 ret void