llvm-readobj: add a test case for ARM_MOV32(T) base relocation

Add a trivial binary (int main() { return 0; }) built for Windows on ARM to
ensure that we can correctly identify ARM_MOV32(T) base relocations.  Addresses
post-commit review comments.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227673 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Saleem Abdulrasool 2015-01-31 04:46:50 +00:00
parent 02897142df
commit ef2a6771e9
2 changed files with 7 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,7 @@
# RUN: llvm-readobj -coff-basereloc %p/Inputs/trivial.exe.coff-arm | FileCheck %s
# CHECK: Entry {
# CHECK: Type: ARM_MOV32(T)
# CHECK: Address: 0x9390
# CHECK: }