aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/AVR/features/avr25.ll
blob: 963f854d4d3e6168eff3e31877246b10e114bc1f (plain)
1
2
3
4
5
6
7
8
; RUN: llc -mattr=avr25 -O0 < %s -mtriple=avr | FileCheck %s

; On most cores, the 16-bit 'MOVW' instruction can be used
define i16 @reg_copy16(i16, i16 %a) {
; CHECK-LABEL: reg_copy16
; CHECK: movw r24, r22
  ret i16 %a
}