reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ; RUN: llvm-mc -triple avr -show-encoding < %s | FileCheck %s foo: mov r2, r13 mov r9, r0 mov r5, r31 mov r3, r3 ; CHECK: mov r2, r13 ; encoding: [0x2d,0x2c] ; CHECK: mov r9, r0 ; encoding: [0x90,0x2c] ; CHECK: mov r5, r31 ; encoding: [0x5f,0x2e] ; CHECK: mov r3, r3 ; encoding: [0x33,0x2c] |