blob: 74f3323cd2d527fd70157b409a7fde4396e9d583 [file] [log] [blame]
Chris Lattner78178742011-02-25 19:06:35 +00001// RUN: llvm-mc -triple arm-unknown-linux %s | FileCheck %s
2
3// CHECK: .byte 1
Ahmed Bougacha19052872015-04-28 01:37:11 +00004.if [~0 >> 63] == 1
Chris Lattner78178742011-02-25 19:06:35 +00005.byte 1
6.else
7.byte 2
8.endif
9
10// CHECK: .byte 3
11.if 4 * [4 + (3 + [2 * 2] + 1)] == 48
12.byte 3
13.else
14.byte 4
15.endif