Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / MSP430 / inline-asm.ll
blob3ea3036714706d579cb97dd8084f1c6b5649a8e1
1 ; RUN: llc < %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 define void @imm() nounwind {
6         call void asm sideeffect "bic\09$0,r2", "i"(i16 32) nounwind
7         ret void
10 define void @reg(i16 %a) nounwind {
11         call void asm sideeffect "bic\09$0,r2", "r"(i16 %a) nounwind
12         ret void
15 @foo = global i16 0, align 2
17 define void @immmem() nounwind {
18         call void asm sideeffect "bic\09$0,r2", "i"(ptr getelementptr(i16, ptr @foo, i32 1)) nounwind
19         ret void
22 define void @mem() nounwind {
23         %fooval = load i16, ptr @foo
24         call void asm sideeffect "bic\09$0,r2", "m"(i16 %fooval) nounwind
25         ret void