[llvm-commits] CVS: llvm/include/llvm/ExecutionEngine/ExecutionEngine.h

Reid Spencer reid at x10sys.com
Sat Mar 3 00:35:31 PST 2007



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






More information about the llvm-commits mailing list