reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # 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 |