diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
| commit | 5a5ac124e1efaf208671f01c46edb15f29ed2a0b (patch) | |
| tree | a6140557876943cdd800ee997c9317283394b22c /test/CodeGen/MSP430/Inst16mi.ll | |
| parent | f03b5bed27d0d2eafd68562ce14f8b5e3f1f0801 (diff) | |
Notes
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 e9ab75cc80bc..38c16f2ba235 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 |
