Changes in directory llvm/include/llvm/ExecutionEngine:

ExecutionEngine.h updated: 1.41 -> 1.42
---
Log message:

Require the destination GlobalValue for LoadValueFromMemory to be passed
in as a parameter instead of returned.


---
Diffs of the changes:  (+2 -1)

 ExecutionEngine.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)


Index: llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
diff -u llvm/include/llvm/ExecutionEngine/ExecutionEngine.h:1.41 
llvm/include/llvm/ExecutionEngine/ExecutionEngine.h:1.42
--- llvm/include/llvm/ExecutionEngine/ExecutionEngine.h:1.41    Thu Nov  9 
13:30:47 2006
+++ llvm/include/llvm/ExecutionEngine/ExecutionEngine.h Sat Mar  3 02:35:14 2007
@@ -217,7 +217,8 @@
   void EmitGlobalVariable(const GlobalVariable *GV);
 
   GenericValue getConstantValue(const Constant *C);
-  GenericValue LoadValueFromMemory(GenericValue *Ptr, const Type *Ty);
+  void LoadValueFromMemory(GenericValue &Result, GenericValue *Ptr, 
+                           const Type *Ty);
 };
 
 } // End llvm namespace



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to