blob: 4d32c00daf82c51025451e0fafc6788515b4e4ec [file] [log] [blame]
# 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 ]
...
# 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: ...