forked from OSchip/llvm-project
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
# RUN: lld -core %s | FileCheck %s
|
|
|
|
#
|
|
# Test that duplicate c-strings are coalesced
|
|
#
|
|
|
|
---
|
|
defined-atoms:
|
|
- ref-name: L0
|
|
type: c-string
|
|
merge: by-content
|
|
content: [ 68, 65, 6c, 6c, 6f, 00 ]
|
|
|
|
- ref-name: L1
|
|
type: c-string
|
|
merge: by-content
|
|
content: [ 74, 68, 65, 72, 65, 00 ]
|
|
---
|
|
defined-atoms:
|
|
- ref-name: L2
|
|
type: c-string
|
|
merge: by-content
|
|
content: [ 68, 65, 6c, 6c, 6f, 00 ]
|
|
---
|
|
defined-atoms:
|
|
- ref-name: L2
|
|
type: c-string
|
|
merge: by-content
|
|
content: [ 74, 68, 65, 72, 65, 00 ]
|
|
...
|
|
|
|
# CHECK-NOT: name:
|
|
# CHECK: type: c-string
|
|
# CHECK: content: [ 68, 65, 6C, 6C, 6F, 00 ]
|
|
# CHECK: merge: by-content
|
|
# CHECK: type: c-string
|
|
# CHECK: content: [ 74, 68, 65, 72, 65, 00 ]
|
|
# CHECK: merge: by-content
|
|
# CHECK: ...
|
|
|
|
|