llvm-for-llvmta/test/CodeGen/AVR/inline-asm/inline-asm2.ll

9 lines
183 B
LLVM
Raw Normal View History

2022-04-25 10:02:23 +02:00
; 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
}