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
12 lines
429 B
ArmAsm
12 lines
429 B
ArmAsm
# RUN: llvm-mc -triple s390x-linux-gnu -show-encoding %s | FileCheck %s
|
|
|
|
#CHECK: llihl %r0, 0 # encoding: [0xa5,0x0d,0x00,0x00]
|
|
#CHECK: llihl %r0, 32768 # encoding: [0xa5,0x0d,0x80,0x00]
|
|
#CHECK: llihl %r0, 65535 # encoding: [0xa5,0x0d,0xff,0xff]
|
|
#CHECK: llihl %r15, 0 # encoding: [0xa5,0xfd,0x00,0x00]
|
|
|
|
llihl %r0, 0
|
|
llihl %r0, 0x8000
|
|
llihl %r0, 0xffff
|
|
llihl %r15, 0
|