You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
325 B
15 lines
325 B
// RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
|
|
|
|
.size bar, . - bar
|
|
.Ltmp01:
|
|
.size foo, .Ltmp01 - foo
|
|
.Ltmp0:
|
|
.size qux, .Ltmp0 - qux
|
|
|
|
// CHECK: .Ltmp0:
|
|
// CHECK: .size bar, .Ltmp0-bar
|
|
// CHECK: .Ltmp01
|
|
// CHECK: .size foo, .Ltmp01-foo
|
|
// CHECK: .Ltmp00
|
|
// CHECK: .size qux, .Ltmp00-qux
|