From: Kevin Enderby Date: Thu, 6 Jun 2013 20:28:28 +0000 (+0000) Subject: Move the test for the data in code into the ARM directory as it is an ARM X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=285bd8e6f9c65bed2b86169e2561fc8b0756adee;p=oota-llvm.git Move the test for the data in code into the ARM directory as it is an ARM binary that is used for the test. Caught by Jim Grosbach! rdar://11791371 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183442 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Object/ARM/macho-data-in-code.test b/test/Object/ARM/macho-data-in-code.test new file mode 100644 index 00000000000..dca084c2cab --- /dev/null +++ b/test/Object/ARM/macho-data-in-code.test @@ -0,0 +1,7 @@ +RUN: llvm-objdump -triple thumbv7-apple-iOS -disassemble %p/../Inputs/macho-data-in-code.macho-thumbv7 -macho | FileCheck %s + +CHECK: 12: 80 bd pop {r7, pc} + +CHECK: 14: 38 00 00 00 .long 56 @ KIND_DATA +CHECK: 16: 00 00 movs r0, r0 + diff --git a/test/Object/X86/macho-data-in-code.test b/test/Object/X86/macho-data-in-code.test deleted file mode 100644 index dca084c2cab..00000000000 --- a/test/Object/X86/macho-data-in-code.test +++ /dev/null @@ -1,7 +0,0 @@ -RUN: llvm-objdump -triple thumbv7-apple-iOS -disassemble %p/../Inputs/macho-data-in-code.macho-thumbv7 -macho | FileCheck %s - -CHECK: 12: 80 bd pop {r7, pc} - -CHECK: 14: 38 00 00 00 .long 56 @ KIND_DATA -CHECK: 16: 00 00 movs r0, r0 -