mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
39ff879a52
This adds support for the .short and its alias .hword for adding literal values into the object file. This is similar to the .word directive, however, rather than inserting a value of 4 bytes, adds a 2-byte value. llvm-svn: 201968
27 lines
323 B
ArmAsm
27 lines
323 B
ArmAsm
@ RUN: llvm-mc -triple arm %s | FileCheck %s
|
|
|
|
.data
|
|
|
|
short:
|
|
.short 0
|
|
.short 0xdefe
|
|
|
|
@ CHECK-LABEL: short
|
|
@ CHECK-NEXT: .short 0
|
|
@ CHECK-NEXT: .short 57086
|
|
|
|
hword:
|
|
.hword 0
|
|
.hword 0xdefe
|
|
|
|
@ CHECK-LABEL: hword
|
|
@ CHECK-NEXT: .short 0
|
|
@ CHECK-NEXT: .short 57086
|
|
|
|
word:
|
|
.word 3
|
|
|
|
@ CHECK-LABEL: word
|
|
@ CHECK-NEXT: .long 3
|
|
|