Home | History | Annotate | Download | only in AVR
      1 ; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s
      2 
      3 
      4 foo:
      5 
      6   clr r2
      7   clr r12
      8   clr r5
      9   clr r0
     10 
     11 ; CHECK: clr r2                  ; encoding: [0x22,0x24]
     12 ; CHECK: clr r12                 ; encoding: [0xcc,0x24]
     13 ; CHECK: clr r5                  ; encoding: [0x55,0x24]
     14 ; CHECK: clr r0                  ; encoding: [0x00,0x24]
     15 
     16