• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: llvm-mc -filetype=obj -arch=x86 %s | llvm-objdump -d - \
2// RUN:                                    | FileCheck %s -check-prefix=WITHRAW
3// RUN: llvm-mc -filetype=obj -arch=x86 %s | llvm-objdump -d -no-show-raw-insn - \
4// RUN:                                    | FileCheck %s -check-prefix=NORAW
5
6// Expect to find the raw incoding when run with raw output (default), but not
7// when run explicitly with -no-show-raw-insn
8
9movl 0, %eax
10// WITHRAW: a1 00 00 00 00 movl
11
12// NORAW: movl
13// NORAW-NOT: a1 00
14
15
16