mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
98ea4ce516
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
16 lines
214 B
ArmAsm
16 lines
214 B
ArmAsm
// 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
|