15 lines · plain
1// RUN: llvm-objdump -d %p/Inputs/trivial.obj.elf-i386 \2// RUN: | FileCheck %s -check-prefix=WITHRAW3// RUN: llvm-objdump -d --no-show-raw-insn %p/Inputs/trivial.obj.elf-i386 \4// RUN: | FileCheck %s -check-prefix=NORAW5 6// Expect to find the raw incoding when run with raw output (default), but not7// when run explicitly with -no-show-raw-insn8 9WITHRAW: a1 00 00 00 00 movl10 11NORAW: movl12NORAW-NOT: a1 0013 14 15