mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
2977f6cff1
Data directives such as .word, .half, .hword are currently parsed using HexagonAsmParser::ParseDirectiveValue which effectively duplicates logic from AsmParser::parseDirectiveValue. This patch deletes that duplicated logic in favour of using addAliasForDirective. Differential Revision: https://reviews.llvm.org/D46999 llvm-svn: 332607
21 lines
944 B
ArmAsm
21 lines
944 B
ArmAsm
# RUN: not llvm-mc -triple hexagon < %s 2>&1 | FileCheck %s
|
|
|
|
# CHECK: [[@LINE+1]]:7: error: out of range literal value in '.byte' directive
|
|
.byte 0xffa
|
|
# CHECK: [[@LINE+1]]:7: error: out of range literal value in '.half' directive
|
|
.half 0xffffa
|
|
# CHECK: [[@LINE+1]]:8: error: out of range literal value in '.short' directive
|
|
.short 0xffffa
|
|
# CHECK: [[@LINE+1]]:8: error: out of range literal value in '.hword' directive
|
|
.hword 0xffffa
|
|
# CHECK: [[@LINE+1]]:8: error: out of range literal value in '.2byte' directive
|
|
.2byte 0xffffa
|
|
# CHECK: [[@LINE+1]]:7: error: out of range literal value in '.word' directive
|
|
.word 0xffffffffa
|
|
# CHECK: [[@LINE+1]]:7: error: out of range literal value in '.long' directive
|
|
.long 0xffffffffa
|
|
# CHECK: [[@LINE+1]]:8: error: out of range literal value in '.4byte' directive
|
|
.4byte 0xffffffffa
|
|
# CHECK: [[@LINE+1]]:8: error: literal value out of range for directive in '.8byte' directive
|
|
.8byte 0xffffffffffffffffa
|