You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
480 B
20 lines
480 B
// 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
|