Files
clang-p2996/lld/test/absolute-local.objtxt
Nick Kledzik 6b079f5e2f Removes files for separate ReaderYAML.cpp and WriterYAML.cpp
and adds a new file ReaderWriterYAML.cpp that uses YAML I/O.

Lots of tweaks to test suite for slightly different YAML encoding.

llvm-svn: 171592
2013-01-05 02:22:35 +00:00

26 lines
633 B
Plaintext

# RUN: lld-core %s | FileCheck %s
#
# Test that absolute symbols with local scope do not cause name conflict
#
---
absolute-atoms:
- name: putchar
ref-name: pc1
value: 0xFFFF0040
scope: static
- name: putchar
ref-name: pc2
value: 0xFFFF0040
scope: static
...
# CHECK: ---
# CHECK: absolute-atoms:
# CHECK: - name: putchar
# CHECK: value: 0x00000000FFFF0040
# CHECK: - name: putchar
# CHECK: value: 0x00000000FFFF0040
# CHECK: ...