projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
MC: Improve the .fill directive's compatibility with GAS
[oota-llvm.git]
/
test
/
MC
/
AsmParser
/
rename.s
1
// RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
2
3
.size bar, . - bar
4
.Ltmp01:
5
.size foo, .Ltmp01 - foo
6
.Ltmp0:
7
.size qux, .Ltmp0 - qux
8
9
// CHECK: .Ltmp0:
10
// CHECK: .size bar, .Ltmp0-bar
11
// CHECK: .Ltmp01
12
// CHECK: .size foo, .Ltmp01-foo
13
// CHECK: .Ltmp02
14
// CHECK: .size qux, .Ltmp02-qux