mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
8d67a0e07c
Thumb one requires that many arithmetic instruction forms have an 'S' suffix. For Thumb2, the whether the suffix is required or precluded depends on whether the instruction is in an IT block. Use target parser predicates to check for these sorts of context-sensitive constraints. llvm-svn: 137746
13 lines
314 B
ArmAsm
13 lines
314 B
ArmAsm
@ RUN: llvm-mc -triple armv7-apple-darwin %s -filetype=obj -o %t.obj
|
|
@ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
|
|
@ RUN: FileCheck %s < %t.dump
|
|
|
|
.thumb_func x
|
|
.code 16
|
|
x:
|
|
adds r0, r1, r2
|
|
.align 4
|
|
adds r0, r1, r2
|
|
|
|
@ CHECK: ('_section_data', '881800bf 00bf00bf 00bf00bf 00bf00bf 8818')
|