Files
clang-p2996/lld/test/core/absolute-local.objtxt
Shankar Easwaran df4f12bb65 [lld][test] organize test directory. No change in functionality
* Renames few tests which had extension objtxt to test
* created core directory that contains all the core tests

llvm-svn: 189720
2013-08-31 05:59:52 +00:00

26 lines
634 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: ...