mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 02:33:53 +00:00
14 lines
518 B
ArmAsm
14 lines
518 B
ArmAsm
|
# RUN: llvm-mc -triple s390x-linux-gnu -show-encoding %s | FileCheck %s
|
||
|
|
||
|
#CHECK: cdfbr %f0, %r0 # encoding: [0xb3,0x95,0x00,0x00]
|
||
|
#CHECK: cdfbr %f0, %r15 # encoding: [0xb3,0x95,0x00,0x0f]
|
||
|
#CHECK: cdfbr %f15, %r0 # encoding: [0xb3,0x95,0x00,0xf0]
|
||
|
#CHECK: cdfbr %f7, %r8 # encoding: [0xb3,0x95,0x00,0x78]
|
||
|
#CHECK: cdfbr %f15, %r15 # encoding: [0xb3,0x95,0x00,0xff]
|
||
|
|
||
|
cdfbr %f0, %r0
|
||
|
cdfbr %f0, %r15
|
||
|
cdfbr %f15, %r0
|
||
|
cdfbr %f7, %r8
|
||
|
cdfbr %f15, %r15
|