brintos

brintos / llvm-project-archived public Read only

0
0
Text · 698 B · fdbbeb0 Raw
26 lines · plain
1; RUN: llvm-mc -triple avr -mattr=sram -show-encoding < %s | FileCheck %s2; RUN: llvm-mc -filetype=obj -triple avr -mattr=sram < %s \3; RUN:     | llvm-objdump -dr --mattr=sram - | FileCheck --check-prefix=INST %s4 5foo:6  std Y+2, r27  std Y+0, r08 9  std Z+12, r910  std Z+30, r711 12  std Y+foo, r913 14; CHECK: std Y+2,  r2                 ; encoding: [0x2a,0x82]15; CHECK: std Y+0,  r0                 ; encoding: [0x08,0x82]16 17; CHECK: std Z+12, r9                 ; encoding: [0x94,0x86]18; CHECK: std Z+30, r7                 ; encoding: [0x76,0x8e]19 20; CHECK: std Y+foo, r9                ; encoding: [0x98'A',0x82'A']21 22; INST: std Y+2, r223; INST: std Y+0, r024; INST: std Z+12, r925; INST: std Z+30, r726