Home | History | Annotate | Download | only in AlignedBundling
      1 # RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - \
      2 # RUN:   | llvm-objdump -disassemble -no-show-raw-insn - | FileCheck %s
      3 
      4 # Test that an instruction near a bundle end gets properly padded
      5 # after it is relaxed.
      6 .text
      7 foo:
      8         .bundle_align_mode 5
      9         .rept 29
     10         push %rax
     11         .endr
     12 # CHECK: 1c: push
     13 # CHECK: 1d: nop
     14 # CHECK: 20: jne
     15         jne 0x100
     16 
     17