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 -mattr=avrtiny -O0 < %s -march=avr | FileCheck %s
|
|
|
|
define i16 @reg_copy16(i16, i16 %a) {
|
|
; CHECK-LABEL: reg_copy16
|
|
; CHECK: mov r24, r22
|
|
; CHECK: mov r25, r23
|
|
|
|
ret i16 %a
|
|
}
|