1; RUN: llc < %s -march=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