blob: 0e7886a4721b9304b60e8d16a32d51a5b685a8f2 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s
Anton Korobeynikovcd761282009-08-26 13:44:29 +00002target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
3target triple = "msp430-generic-generic"
4
Anton Korobeynikov95eb4702009-10-11 19:14:21 +00005define void @imm() nounwind {
6 call void asm sideeffect "bic\09$0,r2", "i"(i16 32) nounwind
7 ret void
8}
9
10define void @reg(i16 %a) nounwind {
11 call void asm sideeffect "bic\09$0,r2", "r"(i16 %a) nounwind
12 ret void
13}
14
15@foo = global i16 0, align 2
16
17define void @immmem() nounwind {
18 call void asm sideeffect "bic\09$0,r2", "i"(i16* getelementptr(i16* @foo, i32 1)) nounwind
19 ret void
20}
21
22define void @mem() nounwind {
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +000023 %fooval = load i16* @foo
24 call void asm sideeffect "bic\09$0,r2", "m"(i16 %fooval) nounwind
Anton Korobeynikov95eb4702009-10-11 19:14:21 +000025 ret void
Anton Korobeynikovcd761282009-08-26 13:44:29 +000026}