• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# RUN: llvm-mc -filetype=obj -triple i386 --x86-align-branch-boundary=32 --x86-align-branch=jmp %s | llvm-objdump -d --no-show-raw-insn - | FileCheck %s
2
3  # Check the branch align mechanism can work in 32-bit mode.
4
5  .text
6  .rept 31
7  int3
8  .endr
9  # CHECK:    20:          jmp
10  jmp bar
11
12
13  .type   bar,@function
14bar:
15  ret
16