1# RUN: llvm-mc -filetype=obj -triple i686-pc-linux-gnu -mcpu=pentiumpro %s -o - \
2# RUN:   | llvm-objdump -d --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 -mcpu=pentiumpro -mc-relax-all %s -o - \
5# RUN:   | llvm-objdump -d --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:      1a: nop
17# CHECK-RELAX:      20: nopw %cs:(%eax,%eax)
18# CHECK-RELAX:      2a: nopw %cs:(%eax,%eax)
19# CHECK-OPT:        1b: calll 0x1c
20# CHECK-RELAX:      3b: calll 0x3c
21        calll   bar # 5 bytes
22        .bundle_unlock
23        ret         # 1 byte
24