mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
b90512a41c
The target specific parser should return `false' if the target AsmParser handles the directive, and `true' if the generic parser should handle the directive. Many of the target specific directive handlers would `return Error' which does not follow these semantics. This change simply changes the target specific routines to conform to the semantis of the ParseDirective correctly. Conformance to the semantics improves diagnostics emitted for the invalid directives. X86 is taken as a sample to ensure that multiple diagnostics are not presented for a single error. llvm-svn: 199068
8 lines
152 B
ArmAsm
8 lines
152 B
ArmAsm
# RUN: not llvm-mc -triple i386 -filetype asm -o - %s 2>&1 | FileCheck %s
|
|
|
|
.code42
|
|
|
|
# CHECK: unknown directive .code42
|
|
# CHECK-NOT: unknown directive
|
|
|