| # RUN: llvm-mc -filetype=obj -triple x86_64 --x86-align-branch-boundary=32 --x86-align-branch=jmp %s | llvm-objdump -d --no-show-raw-insn - | FileCheck %s |
| # Exercise cases where we're enabling interrupts with one instruction delay |
| # and thus can't add a nop in between without changing behavior. |
| # CHECK: 5c: movq %rax, %ss |
| # CHECK: 9d: movl %esi, %ss |
| # movw and movl are interchangeable since we're only using the low 16 bits. |
| # Both are generated as "MOV Sreg,r/m16**" (8E /r), but disassembled as movl |
| # CHECK: dd: movl %esi, %ss |
| # CHECK: 11b: movw (%esi), %ss |
| # CHECK: 15b: movw (%rsi), %ss |