From: NAKAMURA Takumi Date: Thu, 5 Dec 2013 02:21:44 +0000 (+0000) Subject: Move llvm/test/MC/ELF/thumb-st_other.s to test/MC/ARM. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=688aa71e35ef9c062afe6d1673cbdeef8a44d2ca;p=oota-llvm.git Move llvm/test/MC/ELF/thumb-st_other.s to test/MC/ARM. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196457 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/MC/ARM/thumb-st_other.s b/test/MC/ARM/thumb-st_other.s new file mode 100644 index 00000000000..8750c2bba5f --- /dev/null +++ b/test/MC/ARM/thumb-st_other.s @@ -0,0 +1,19 @@ +@ Check the value of st_other for thumb function. + +@ ARM does not define any st_other flags for thumb function. The value +@ for st_other should always be 0. + +@ RUN: llvm-mc < %s -triple thumbv5-linux-gnueabi -filetype=obj -o - \ +@ RUN: | llvm-readobj -t | FileCheck %s + + .syntax unified + .text + .align 2 + .thumb_func + .global main + .type main,%function +main: + bx lr + +@ CHECK: Name: main +@ CHECK: Other: 0 diff --git a/test/MC/ELF/thumb-st_other.s b/test/MC/ELF/thumb-st_other.s deleted file mode 100644 index 8750c2bba5f..00000000000 --- a/test/MC/ELF/thumb-st_other.s +++ /dev/null @@ -1,19 +0,0 @@ -@ Check the value of st_other for thumb function. - -@ ARM does not define any st_other flags for thumb function. The value -@ for st_other should always be 0. - -@ RUN: llvm-mc < %s -triple thumbv5-linux-gnueabi -filetype=obj -o - \ -@ RUN: | llvm-readobj -t | FileCheck %s - - .syntax unified - .text - .align 2 - .thumb_func - .global main - .type main,%function -main: - bx lr - -@ CHECK: Name: main -@ CHECK: Other: 0