projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Prefix failing commands with not to make clear they are expected to fail.
[oota-llvm.git]
/
test
/
MC
/
AsmParser
/
line_with_hash.s
1
# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
2
3
// We used to incorrectly parse a line with only a # in it
4
5
.zero 42
6
#
7
.ifndef FOO
8
.zero 2
9
.else
10
.endif
11
.zero 24
12
13
// CHECK: .zero 42
14
// CHECK-NEXT: .zero 2
15
// CHECK-NEXT: .zero 24