xref: /llvm-project/llvm/test/CodeGen/AVR/inline-asm/inline-asm2.ll (revision 9ef1d37ffb5f56a9b949a6307bbb16c2ea0130e3)
1; RUN: llc < %s -mtriple=avr -no-integrated-as | FileCheck %s
2
3; CHECK-LABEL: foo
4define void @foo(i16 %a) {
5  call void asm sideeffect "add $0, $0", "Z"(i16 %a) nounwind
6  ret void
7}
8
9