mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 23:32:27 +00:00
This adds all MC tests for the SystemZ target. Patch by Richard Sandiford. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181206 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
754 B
ArmAsm
20 lines
754 B
ArmAsm
# RUN: llvm-mc -triple s390x-linux-gnu -show-encoding %s | FileCheck %s
|
|
|
|
#CHECK: sll %r0, 0 # encoding: [0x89,0x00,0x00,0x00]
|
|
#CHECK: sll %r7, 0 # encoding: [0x89,0x70,0x00,0x00]
|
|
#CHECK: sll %r15, 0 # encoding: [0x89,0xf0,0x00,0x00]
|
|
#CHECK: sll %r0, 4095 # encoding: [0x89,0x00,0x0f,0xff]
|
|
#CHECK: sll %r0, 0(%r1) # encoding: [0x89,0x00,0x10,0x00]
|
|
#CHECK: sll %r0, 0(%r15) # encoding: [0x89,0x00,0xf0,0x00]
|
|
#CHECK: sll %r0, 4095(%r1) # encoding: [0x89,0x00,0x1f,0xff]
|
|
#CHECK: sll %r0, 4095(%r15) # encoding: [0x89,0x00,0xff,0xff]
|
|
|
|
sll %r0,0
|
|
sll %r7,0
|
|
sll %r15,0
|
|
sll %r0,4095
|
|
sll %r0,0(%r1)
|
|
sll %r0,0(%r15)
|
|
sll %r0,4095(%r1)
|
|
sll %r0,4095(%r15)
|