Home | History | Annotate | Download | only in AVR
      1 ; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s
      2 
      3 
      4 foo:
      5 
      6   cp r12, r2
      7   cp r19, r0
      8   cp r15, r31
      9   cp r0,  r0
     10 
     11 ; CHECK: cp r12, r2                   ; encoding: [0xc2,0x14]
     12 ; CHECK: cp r19, r0                   ; encoding: [0x30,0x15]
     13 ; CHECK: cp r15, r31                  ; encoding: [0xff,0x16]
     14 ; CHECK: cp r0,  r0                   ; encoding: [0x00,0x14]
     15