mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
b798753bdb
Two problems, 1) for the last 4 bytes it would print them as separate bytes not a word and 2) it would print the same last byte for those bytes less than a word. rdar://25938224 llvm-svn: 267819
12 lines
434 B
Plaintext
12 lines
434 B
Plaintext
# RUN: llvm-objdump -macho -section=__data %p/Inputs/bind2.macho-x86_64 | FileCheck %s
|
|
|
|
# CHECK: bind2.macho-x86_64:
|
|
|
|
# RUN: llvm-objdump -macho -section=__data %p/Inputs/section.macho-armv7 | FileCheck -check-prefix CHECK-ADDR %s
|
|
|
|
# CHECK-ADDR: 00000004 00000001 00000002
|
|
|
|
# RUN: llvm-objdump -macho -section=__const %p/Inputs/section.macho-armv7 | FileCheck -check-prefix CHECK-BYTES %s
|
|
|
|
# CHECK-BYTES: 0000000c 00000003 04 05 06
|