1# RUN: llvm-mc -filetype=obj -triple i686-pc-linux-gnu %s -o - \ 2# RUN: | llvm-objdump -disassemble -no-show-raw-insn - \ 3# RUN: | FileCheck -check-prefix=CHECK -check-prefix=CHECK-OPT %s 4# RUN: llvm-mc -filetype=obj -triple i686-pc-linux-gnu -mc-relax-all %s -o - \ 5# RUN: | llvm-objdump -disassemble -no-show-raw-insn - \ 6# RUN: | FileCheck -check-prefix=CHECK -check-prefix=CHECK-RELAX %s 7 8 .text 9foo: 10 .bundle_align_mode 5 11 push %ebp # 1 byte 12 .align 16 13 .bundle_lock align_to_end 14# CHECK: 1: nopw %cs:(%eax,%eax) 15# CHECK: 10: nopw %cs:(%eax,%eax) 16# CHECK-RELAX: 1f: nop 17# CHECK-RELAX: 20: nopw %cs:(%eax,%eax) 18# CHECK-RELAX: 2f: nopw %cs:(%eax,%eax) 19# CHECK-OPT: 1b: calll -4 20# CHECK-RELAX: 3b: calll -4 21 calll bar # 5 bytes 22 .bundle_unlock 23 ret # 1 byte 24