diff options
author | Lang Hames <lhames@gmail.com> | 2018-07-11 06:46:17 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2018-07-11 06:46:17 +0000 |
commit | 709f773a8884bb74239aac16d91deea8591a5ede (patch) | |
tree | 3bfef69281f48e047bbab754b7751757b98a86a6 /llvm/lib | |
parent | 1d6a80cd9544ff89cb8a875ae08569f1cd0f0782 (diff) | |
download | bcm5719-llvm-709f773a8884bb74239aac16d91deea8591a5ede.tar.gz bcm5719-llvm-709f773a8884bb74239aac16d91deea8591a5ede.zip |
Revert r336760: "[ORC] Add unit tests for the reexports utility that were..."
This patch broke a few buildbots. I will investigate and re-apply when I have
a fix.
llvm-svn: 336767
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/ExecutionEngine/Orc/Core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Orc/Core.cpp b/llvm/lib/ExecutionEngine/Orc/Core.cpp index 7272cd6014d..38f2213a85f 100644 --- a/llvm/lib/ExecutionEngine/Orc/Core.cpp +++ b/llvm/lib/ExecutionEngine/Orc/Core.cpp @@ -462,7 +462,7 @@ void ReExportsMaterializationUnit::materialize( // FIXME: We're creating a SymbolFlagsMap and a std::map of // std::sets just to add one dependency here. This needs a // re-think. - Resolved.insert(KV.second.Aliasee); + Resolved.insert(KV.first); } QueryInfo->R.resolve(ResolutionMap); |