diff options
Diffstat (limited to 'test/MC/ARM/nop-thumb2-padding.s')
-rw-r--r-- | test/MC/ARM/nop-thumb2-padding.s | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/MC/ARM/nop-thumb2-padding.s b/test/MC/ARM/nop-thumb2-padding.s new file mode 100644 index 0000000..a8aa3a1 --- /dev/null +++ b/test/MC/ARM/nop-thumb2-padding.s @@ -0,0 +1,12 @@ +@ 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') |