diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-04-29 16:57:12 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-04-29 16:57:12 +0000 |
commit | c003229ddc22cba38643f64341b53747bd5bc3fe (patch) | |
tree | 55e05f60679075ab9fd5fd160832c19d73a85ba7 /lib/ExecutionEngine/JIT | |
parent | 72d30f6950f48c7bec29e6b3c955784992304bae (diff) |
Fix a C++0x portability issue with std::make_pair. Explicitly providing template arguments no longer works when the call arguments are lvalues.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130513 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/JIT')
-rw-r--r-- | lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp b/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp index 16d32598d3..e71c20b89f 100644 --- a/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp +++ b/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp @@ -142,7 +142,7 @@ void JITDebugRegisterer::RegisterFunction(const Function *F, DebugInfo &I) { // Add a mapping from F to the entry and buffer, so we can delete this // info later. - FnMap[F] = std::make_pair<std::string, jit_code_entry*>(Buffer, JITCodeEntry); + FnMap[F] = std::make_pair(Buffer, JITCodeEntry); // Acquire the lock and do the registration. { |