1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/MC/ARM/directive-literals.s
Saleem Abdulrasool 39ff879a52 ARM IAS: support .short and .hword
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
2014-02-23 06:22:09 +00:00

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