projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
MC: fix test locations/name
[oota-llvm.git]
/
test
/
MC
/
AsmParser
/
variables.s
1
// RUN: llvm-mc -triple i386-unknown-unknown %s
2
3
.data
4
t0_v0 = 1
5
t0_v1 = t0_v0
6
.if t0_v1 != 1
7
.abort "invalid value"
8
.endif
9
10
t1_v0 = 1
11
t1_v1 = t0_v0
12
t1_v0 = 2
13
.if t0_v1 != 1
14
.abort "invalid value"
15
.endif