[Lldb-commits] [PATCH] D20312: Fix function name lookup in IRExecutionEngine.cpp.

Stephane Sezer via lldb-commits lldb-commits at lists.llvm.org
Sun Jun 5 19:57:20 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL271863: Fix function name lookup in IRExecutionEngine.cpp. (authored by sas).

Changed prior to commit:
  http://reviews.llvm.org/D20312?vs=57854&id=59685#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D20312

Files:
  lldb/trunk/source/Expression/IRExecutionUnit.cpp

Index: lldb/trunk/source/Expression/IRExecutionUnit.cpp
===================================================================
--- lldb/trunk/source/Expression/IRExecutionUnit.cpp
+++ lldb/trunk/source/Expression/IRExecutionUnit.cpp
@@ -125,7 +125,7 @@
 
     for (JittedFunction &function : m_jitted_functions)
     {
-        if (function.m_name.AsCString() != m_name.AsCString())
+        if (function.m_name == m_name)
         {
             func_local_addr = function.m_local_addr;
             func_remote_addr = function.m_remote_addr;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D20312.59685.patch
Type: text/x-patch
Size: 541 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160606/a16f9488/attachment.bin>


More information about the lldb-commits mailing list