[llvm-commits] [llvm] r58684 - /llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp

Evan Cheng evan.cheng at apple.com
Mon Nov 3 22:10:31 PST 2008


Author: evancheng
Date: Tue Nov  4 00:10:31 2008
New Revision: 58684

URL: http://llvm.org/viewvc/llvm-project?rev=58684&view=rev
Log:
80 col violation.

Modified:
    llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp

Modified: llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp?rev=58684&r1=58683&r2=58684&view=diff

==============================================================================
--- llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp (original)
+++ llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp Tue Nov  4 00:10:31 2008
@@ -715,8 +715,8 @@
 /// is the address of the memory at which to store Val, cast to GenericValue *.
 /// It is not a pointer to a GenericValue containing the address at which to
 /// store Val.
-void ExecutionEngine::StoreValueToMemory(const GenericValue &Val, GenericValue *Ptr,
-                                         const Type *Ty) {
+void ExecutionEngine::StoreValueToMemory(const GenericValue &Val,
+                                         GenericValue *Ptr, const Type *Ty) {
   const unsigned StoreBytes = getTargetData()->getTypeStoreSize(Ty);
 
   switch (Ty->getTypeID()) {





More information about the llvm-commits mailing list