projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
AVX-512: Implemented encoding , DAG lowering and intrinsics for Integer Truncate...
[oota-llvm.git]
/
test
/
MC
/
X86
/
expand-var.s
1
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux < %s | llvm-readobj -r | FileCheck %s
2
3
// CHECK: Section {{.*}} .rela.text {
4
// CHECK-NEXT: 0x0 R_X86_64_32 d 0x0
5
// CHECK-NEXT: }
6
7
a:
8
b = a
9
c = a
10
d = a
11
.weak d
12
.long d + (b - c)
13
14
15
a2:
16
.weak b2
17
b2 = a2
18
c2 = b2 - a2