summaryrefslogtreecommitdiff
path: root/test/MC/ELF/bracket-exprs.s
blob: 96f9f9aa450aa61968eb6fdbae09918fbf6aed17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: llvm-mc -triple i386-unknown-unknown %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