mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
90c8cff37e
test isn't run when the arm backend isn't built. This fixes PR9327 llvm-svn: 126500
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
|