diff options
Diffstat (limited to 'test/CodeGen/MSP430/Inst16mi.ll')
-rw-r--r-- | test/CodeGen/MSP430/Inst16mi.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/MSP430/Inst16mi.ll b/test/CodeGen/MSP430/Inst16mi.ll index e9ab75c..38c16f2 100644 --- a/test/CodeGen/MSP430/Inst16mi.ll +++ b/test/CodeGen/MSP430/Inst16mi.ll @@ -14,7 +14,7 @@ define void @mov() nounwind { define void @add() nounwind { ; CHECK-LABEL: add: ; CHECK: add.w #2, &foo - %1 = load i16* @foo + %1 = load i16, i16* @foo %2 = add i16 %1, 2 store i16 %2, i16 * @foo ret void @@ -23,7 +23,7 @@ define void @add() nounwind { define void @and() nounwind { ; CHECK-LABEL: and: ; CHECK: and.w #2, &foo - %1 = load i16* @foo + %1 = load i16, i16* @foo %2 = and i16 %1, 2 store i16 %2, i16 * @foo ret void @@ -32,7 +32,7 @@ define void @and() nounwind { define void @bis() nounwind { ; CHECK-LABEL: bis: ; CHECK: bis.w #2, &foo - %1 = load i16* @foo + %1 = load i16, i16* @foo %2 = or i16 %1, 2 store i16 %2, i16 * @foo ret void @@ -41,7 +41,7 @@ define void @bis() nounwind { define void @xor() nounwind { ; CHECK-LABEL: xor: ; CHECK: xor.w #2, &foo - %1 = load i16* @foo + %1 = load i16, i16* @foo %2 = xor i16 %1, 2 store i16 %2, i16 * @foo ret void |