diff options
author | James Y Knight <jyknight@google.com> | 2018-06-02 02:44:10 +0000 |
---|---|---|
committer | James Y Knight <jyknight@google.com> | 2018-06-02 02:44:10 +0000 |
commit | 9c2d52014c95cef4aa0cf7e39ed47a42643c9568 (patch) | |
tree | 15ec55bb97a84f42ea7b4775f2ef1082db49830e /lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/a.c | |
parent | 1534929623e21927dda50c0fbc1e0cfcb930bfa4 (diff) | |
download | bcm5719-llvm-9c2d52014c95cef4aa0cf7e39ed47a42643c9568.tar.gz bcm5719-llvm-9c2d52014c95cef4aa0cf7e39ed47a42643c9568.zip |
Fix support for distinguishing archive members by timestamp on Darwin.
On Darwin, the binary's symbol table points to debug info in object
files -- potentially object files within a static library. Such a
library may have multiple entries with the same name, distinguished
only by timestamp.
The code was already _attempting_ to handle this case (see the code in
ObjectContainerBSDArchive::Archive::FindObject which disambiguates via
timestamp). But, unfortunately, while the timestamp was taken into
account on the _first_ lookup, the result was then cached in a map
keyed only off of the path.
Added the timestamp to the cache, and added a test case.
Differential Revision: https://reviews.llvm.org/D47660
llvm-svn: 333813
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/a.c')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/a.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/a.c b/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/a.c new file mode 100644 index 00000000000..402a6270c9c --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/a.c @@ -0,0 +1,14 @@ +//===-- a.c -----------------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +int __a_global = 1; + +int a(int arg) { + int result = arg + __a_global; + return result; +} |