projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Implement .equ directive as a synonym to .set.
[oota-llvm.git]
/
test
/
MC
/
AsmParser
/
directive_set.s
1
# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
2
3
# CHECK: TEST0:
4
# CHECK: a = 0
5
TEST0:
6
.set a, 0
7
8
# CHECK: TEST1:
9
# CHECK: a = 0
10
TEST1:
11
.equ a, 0
12