Files
clang-p2996/lld/test/core/cstring-coalesce.objtxt
Shankar Easwaran 3d8de47f76 Fix trailing whitespace.
llvm-svn: 200182
2014-01-27 03:09:26 +00:00

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: ...