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"
5 @foo = common global i8 0, align 1
6 @bar = common global i8 0, align 1
8 define void @mov() nounwind {
10 ; CHECK: mov.b &bar, &foo
16 define void @add() nounwind {
18 ; CHECK: add.b &bar, &foo
26 define void @and() nounwind {
28 ; CHECK: and.b &bar, &foo
36 define void @bis() nounwind {
38 ; CHECK: bis.b &bar, &foo
46 define void @xor() nounwind {
48 ; CHECK: xor.b &bar, &foo