blob: e9956a5ebe4b5d416ade64b3293a3107e7797530 [file] [log] [blame]
Rui Ueyamaa6610ee2013-09-27 21:04:00 +00001// RUN: llvm-objdump -d %p/Inputs/trivial.obj.elf-i386 \
2// RUN: | FileCheck %s -check-prefix=WITHRAW
3// RUN: llvm-objdump -d -no-show-raw-insn %p/Inputs/trivial.obj.elf-i386 \
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
9WITHRAW: a1 00 00 00 00 movl
10
11NORAW: movl
12NORAW-NOT: a1 00
13
14