diff options
Diffstat (limited to 'test/MC/SystemZ/insn-clghrl-02.s')
-rw-r--r-- | test/MC/SystemZ/insn-clghrl-02.s | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/MC/SystemZ/insn-clghrl-02.s b/test/MC/SystemZ/insn-clghrl-02.s new file mode 100644 index 0000000..a37a625 --- /dev/null +++ b/test/MC/SystemZ/insn-clghrl-02.s @@ -0,0 +1,16 @@ +# RUN: not llvm-mc -triple s390x-linux-gnu < %s 2> %t +# RUN: FileCheck < %t %s + +#CHECK: error: offset out of range +#CHECK: clghrl %r0, -0x1000000002 +#CHECK: error: offset out of range +#CHECK: clghrl %r0, -1 +#CHECK: error: offset out of range +#CHECK: clghrl %r0, 1 +#CHECK: error: offset out of range +#CHECK: clghrl %r0, 0x100000000 + + clghrl %r0, -0x1000000002 + clghrl %r0, -1 + clghrl %r0, 1 + clghrl %r0, 0x100000000 |