1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00
llvm-mirror/test/MC/AArch64/inst-directive-diagnostic.s
Chad Rosier 19ef65a831 [AArch64] Add support for the .inst directive.
This has been implement using the MCTargetStreamer interface as is done in the
ARM, Mips and PPC backends.

Phabricator: http://reviews.llvm.org/D5891
PR20964

llvm-svn: 220422
2014-10-22 20:35:57 +00:00

20 lines
480 B
ArmAsm

// RUN: not llvm-mc %s -triple=aarch64-none-linux-gnu -filetype asm -o - 2>&1 \
// RUN: | FileCheck -check-prefix CHECK-ERROR %s
.align 2
.global diagnostics
.type diagnostics,%function
diagnostics:
.Label:
.inst
// CHECK-ERROR: expected expression following directive
.inst 0x5e104020,
// CHECK-ERROR: expected expression
.inst .Label
// CHECK-ERROR: expected constant expression
.inst 0x5e104020 0x5e104020
// CHECK-ERROR: unexpected token in directive