[TwoAddressInstructionPass] When looking for a 3 addr conversion after commuting...
[oota-llvm.git] / test / CodeGen / MSP430 / Inst8mm.ll
1 ; RUN: llc -march=msp430 < %s | FileCheck %s
2 target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
3 target triple = "msp430-generic-generic"
4
5 @foo = common global i8 0, align 1
6 @bar = common global i8 0, align 1
7
8 define void @mov() nounwind {
9 ; CHECK-LABEL: mov:
10 ; CHECK: mov.b  &bar, &foo
11         %1 = load i8, i8* @bar
12         store i8 %1, i8* @foo
13         ret void
14 }
15
16 define void @add() nounwind {
17 ; CHECK-LABEL: add:
18 ; CHECK: add.b  &bar, &foo
19         %1 = load i8, i8* @bar
20         %2 = load i8, i8* @foo
21         %3 = add i8 %2, %1
22         store i8 %3, i8* @foo
23         ret void
24 }
25
26 define void @and() nounwind {
27 ; CHECK-LABEL: and:
28 ; CHECK: and.b  &bar, &foo
29         %1 = load i8, i8* @bar
30         %2 = load i8, i8* @foo
31         %3 = and i8 %2, %1
32         store i8 %3, i8* @foo
33         ret void
34 }
35
36 define void @bis() nounwind {
37 ; CHECK-LABEL: bis:
38 ; CHECK: bis.b  &bar, &foo
39         %1 = load i8, i8* @bar
40         %2 = load i8, i8* @foo
41         %3 = or i8 %2, %1
42         store i8 %3, i8* @foo
43         ret void
44 }
45
46 define void @xor() nounwind {
47 ; CHECK-LABEL: xor:
48 ; CHECK: xor.b  &bar, &foo
49         %1 = load i8, i8* @bar
50         %2 = load i8, i8* @foo
51         %3 = xor i8 %2, %1
52         store i8 %3, i8* @foo
53         ret void
54 }
55