mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
1c1cc1c5ed
As announced here: http://lists.llvm.org/pipermail/llvm-dev/2019-April/131786.html Grouped option syntax (POSIX Utility Conventions) does not play well with -long-option A subsequent change will reject -long-option.
12 lines
303 B
ArmAsm
12 lines
303 B
ArmAsm
; RUN: llvm-mc -triple avr -mattr=break -show-encoding < %s | FileCheck %s
|
|
; RUN: llvm-mc -filetype=obj -triple avr -mattr=break < %s | llvm-objdump -d --mattr=break - | FileCheck --check-prefix=CHECK-INST %s
|
|
|
|
|
|
foo:
|
|
|
|
break
|
|
|
|
; CHECK: break ; encoding: [0x98,0x95]
|
|
|
|
; CHECK-INST: break
|