From: Chris Lattner Date: Fri, 25 Feb 2011 19:06:35 +0000 (+0000) Subject: split this test into arch specific pieces, so the ARM X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=98ea4ce516f40beb3efe63e8fb9eee7a3124a7d9;p=oota-llvm.git split this test into arch specific pieces, so the ARM test isn't run when the arm backend isn't built. This fixes PR9327 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126500 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/MC/ARM/bracket-exprs.s b/test/MC/ARM/bracket-exprs.s new file mode 100644 index 00000000000..922bf703701 --- /dev/null +++ b/test/MC/ARM/bracket-exprs.s @@ -0,0 +1,15 @@ +// RUN: llvm-mc -triple arm-unknown-linux %s | FileCheck %s + +// CHECK: .byte 1 +.if [~0 >> 1] == -1 +.byte 1 +.else +.byte 2 +.endif + +// CHECK: .byte 3 +.if 4 * [4 + (3 + [2 * 2] + 1)] == 48 +.byte 3 +.else +.byte 4 +.endif diff --git a/test/MC/ELF/bracket-exprs.s b/test/MC/ELF/bracket-exprs.s index c4286517837..96f9f9aa450 100644 --- a/test/MC/ELF/bracket-exprs.s +++ b/test/MC/ELF/bracket-exprs.s @@ -1,5 +1,4 @@ // RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s -// RUN: llvm-mc -triple arm-unknown-linux %s | FileCheck %s // CHECK: .byte 1 .if [~0 >> 1] == -1