brintos

brintos / llvm-project-archived public Read only

0
0
Text · 475 B · 0acbd52 Raw
21 lines · plain
1## Show that llvm-objdump handles invalid byte sequences, and continues.2 3# RUN: yaml2obj %s -o %t.o4# RUN: llvm-objdump %t.o -d | FileCheck %s5 6# CHECK:      0000000000000000 <.text>:7# CHECK:         0: d9 e2 <unknown>8# CHECK-NEXT:    2: 90    nop9 10--- !ELF11FileHeader:12  Class:   ELFCLASS6413  Data:    ELFDATA2LSB14  Type:    ET_EXEC15  Machine: EM_X86_6416Sections:17  - Name:    .text18    Type:    SHT_PROGBITS19    Flags:   [SHF_ALLOC, SHF_EXECINSTR]20    Content: 'd9e290'21