X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FMSP430%2FInst8rm.ll;h=e1a9703955787191c85ef7a1a473a5b7127d97ee;hb=813f44a29fd0fd140127023222d0633e23783bcc;hp=308163ed73073b10b639c3ea3cc0852041d803a6;hpb=8b2b8a18354546d534b72f912153a3252ab4b857;p=oota-llvm.git diff --git a/test/CodeGen/MSP430/Inst8rm.ll b/test/CodeGen/MSP430/Inst8rm.ll index 308163ed730..e1a97039557 100644 --- a/test/CodeGen/MSP430/Inst8rm.ll +++ b/test/CodeGen/MSP430/Inst8rm.ll @@ -6,7 +6,7 @@ target triple = "msp430-generic-generic" define i8 @add(i8 %a) nounwind { ; CHECK-LABEL: add: ; CHECK: add.b &foo, r15 - %1 = load i8* @foo + %1 = load i8, i8* @foo %2 = add i8 %a, %1 ret i8 %2 } @@ -14,7 +14,7 @@ define i8 @add(i8 %a) nounwind { define i8 @and(i8 %a) nounwind { ; CHECK-LABEL: and: ; CHECK: and.b &foo, r15 - %1 = load i8* @foo + %1 = load i8, i8* @foo %2 = and i8 %a, %1 ret i8 %2 } @@ -22,7 +22,7 @@ define i8 @and(i8 %a) nounwind { define i8 @bis(i8 %a) nounwind { ; CHECK-LABEL: bis: ; CHECK: bis.b &foo, r15 - %1 = load i8* @foo + %1 = load i8, i8* @foo %2 = or i8 %a, %1 ret i8 %2 } @@ -30,7 +30,7 @@ define i8 @bis(i8 %a) nounwind { define i8 @bic(i8 %a) nounwind { ; CHECK-LABEL: bic: ; CHECK: bic.b &foo, r15 - %1 = load i8* @foo + %1 = load i8, i8* @foo %2 = xor i8 %1, -1 %3 = and i8 %a, %2 ret i8 %3 @@ -39,7 +39,7 @@ define i8 @bic(i8 %a) nounwind { define i8 @xor(i8 %a) nounwind { ; CHECK-LABEL: xor: ; CHECK: xor.b &foo, r15 - %1 = load i8* @foo + %1 = load i8, i8* @foo %2 = xor i8 %a, %1 ret i8 %2 }