Fangrui Song f28408f3af [test] Remove CHECK lines for MCAsmStreamer's fixup output
The fixup output is a debug aid and should not be used to test
target-specific relocation generation implementation. The llvm-mc
-filetype=obj output is what truly matters.
2025-04-17 22:29:42 -07:00

26 lines
698 B
ArmAsm

; RUN: llvm-mc -triple avr -mattr=sram -show-encoding < %s | FileCheck %s
; RUN: llvm-mc -filetype=obj -triple avr -mattr=sram < %s \
; RUN: | llvm-objdump -dr --mattr=sram - | FileCheck --check-prefix=INST %s
foo:
std Y+2, r2
std Y+0, r0
std Z+12, r9
std Z+30, r7
std Y+foo, r9
; CHECK: std Y+2, r2 ; encoding: [0x2a,0x82]
; CHECK: std Y+0, r0 ; encoding: [0x08,0x82]
; CHECK: std Z+12, r9 ; encoding: [0x94,0x86]
; CHECK: std Z+30, r7 ; encoding: [0x76,0x8e]
; CHECK: std Y+foo, r9 ; encoding: [0x98'A',0x82'A']
; INST: std Y+2, r2
; INST: std Y+0, r0
; INST: std Z+12, r9
; INST: std Z+30, r7