[Lldb-commits] [lldb] r124928 - /lldb/trunk/source/Expression/IRForTarget.cpp

Greg Clayton gclayton at apple.com
Fri Feb 4 18:28:58 PST 2011


Author: gclayton
Date: Fri Feb  4 20:28:58 2011
New Revision: 124928

URL: http://llvm.org/viewvc/llvm-project?rev=124928&view=rev
Log:
Fixed an excessive ctor issue. Patch from Kirk Beitz / Jai Menon.


Modified:
    lldb/trunk/source/Expression/IRForTarget.cpp

Modified: lldb/trunk/source/Expression/IRForTarget.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/IRForTarget.cpp?rev=124928&r1=124927&r2=124928&view=diff
==============================================================================
--- lldb/trunk/source/Expression/IRForTarget.cpp (original)
+++ lldb/trunk/source/Expression/IRForTarget.cpp Fri Feb  4 20:28:58 2011
@@ -374,9 +374,9 @@
                                     result_decl_type);
         }
                 
-        StoreInst *synthesized_store = new StoreInst::StoreInst(initializer,
-                                                                new_result_global,
-                                                                first_entry_instruction);
+        StoreInst *synthesized_store = new StoreInst(initializer,
+                                                     new_result_global,
+                                                     first_entry_instruction);
         
         if (log)
             log->Printf("Synthesized result store \"%s\"\n", PrintValue(synthesized_store).c_str());





More information about the lldb-commits mailing list