2013-04-05 02:59:24 +08:00
|
|
|
# RUN: lld -core %s | FileCheck %s
|
2011-12-18 16:27:59 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Test that a tentative definition and a regular global are merged into
|
|
|
|
# one regular global
|
|
|
|
#
|
|
|
|
|
|
|
|
---
|
2013-01-05 10:22:35 +08:00
|
|
|
defined-atoms:
|
2011-12-18 16:27:59 +08:00
|
|
|
- name: _foo
|
2013-01-05 10:22:35 +08:00
|
|
|
merge: as-tentative
|
2012-01-05 07:58:17 +08:00
|
|
|
scope: global
|
2011-12-18 16:27:59 +08:00
|
|
|
type: zero-fill
|
|
|
|
size: 4
|
|
|
|
---
|
2013-01-05 10:22:35 +08:00
|
|
|
defined-atoms:
|
2011-12-18 16:27:59 +08:00
|
|
|
- name: _foo
|
2012-01-05 07:58:17 +08:00
|
|
|
scope: global
|
2011-12-18 16:27:59 +08:00
|
|
|
type: data
|
|
|
|
content: [ 00, 00, 00, 00 ]
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
|
|
# CHECK: name: _foo
|
2013-01-05 10:22:35 +08:00
|
|
|
# CHECK-NOT: merge: as-tentative
|