diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 |
| commit | f8af5cf600354830d4ccf59732403f0f073eccb9 (patch) | |
| tree | 2ba0398b4c42ad4f55561327538044fd2c925a8b /test/CodeGen/MSP430/Inst16mi.ll | |
| parent | 59d6cff90eecf31cb3dd860c4e786674cfdd42eb (diff) | |
Notes
Diffstat (limited to 'test/CodeGen/MSP430/Inst16mi.ll')
| -rw-r--r-- | test/CodeGen/MSP430/Inst16mi.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/CodeGen/MSP430/Inst16mi.ll b/test/CodeGen/MSP430/Inst16mi.ll index 33d7aa495d3c..e9ab75cc80bc 100644 --- a/test/CodeGen/MSP430/Inst16mi.ll +++ b/test/CodeGen/MSP430/Inst16mi.ll @@ -5,14 +5,14 @@ target triple = "msp430-generic-generic" @foo = common global i16 0, align 2 define void @mov() nounwind { -; CHECK: mov: +; CHECK-LABEL: mov: ; CHECK: mov.w #2, &foo store i16 2, i16 * @foo ret void } define void @add() nounwind { -; CHECK: add: +; CHECK-LABEL: add: ; CHECK: add.w #2, &foo %1 = load i16* @foo %2 = add i16 %1, 2 @@ -21,7 +21,7 @@ define void @add() nounwind { } define void @and() nounwind { -; CHECK: and: +; CHECK-LABEL: and: ; CHECK: and.w #2, &foo %1 = load i16* @foo %2 = and i16 %1, 2 @@ -30,7 +30,7 @@ define void @and() nounwind { } define void @bis() nounwind { -; CHECK: bis: +; CHECK-LABEL: bis: ; CHECK: bis.w #2, &foo %1 = load i16* @foo %2 = or i16 %1, 2 @@ -39,7 +39,7 @@ define void @bis() nounwind { } define void @xor() nounwind { -; CHECK: xor: +; CHECK-LABEL: xor: ; CHECK: xor.w #2, &foo %1 = load i16* @foo %2 = xor i16 %1, 2 |
