You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: llc < %s -march=avr -no-integrated-as | FileCheck %s
|
|
|
|
; CHECK-LABEL: foo
|
|
define void @foo(i16 %a) {
|
|
call void asm sideeffect "add $0, $0", "Z"(i16 %a) nounwind
|
|
ret void
|
|
}
|
|
|