[llvm-commits] CVS: llvm/lib/System/SunOS/Memory.cpp

Reid Spencer reid at x10sys.com
Tue Sep 14 08:42:22 PDT 2004



Changes in directory llvm/lib/System/SunOS:

Memory.cpp updated: 1.3 -> 1.4
---
Log message:

Fix a compilation error.


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

Index: llvm/lib/System/SunOS/Memory.cpp
diff -u llvm/lib/System/SunOS/Memory.cpp:1.3 llvm/lib/System/SunOS/Memory.cpp:1.4
--- llvm/lib/System/SunOS/Memory.cpp:1.3	Mon Sep 13 17:38:12 2004
+++ llvm/lib/System/SunOS/Memory.cpp	Tue Sep 14 10:42:11 2004
@@ -39,7 +39,7 @@
   }
   MemoryBlock result;
   result.Address = pa;
-  result.AllocSize = NumPages*pageSize;
+  result.Size = NumPages*pageSize;
   return result;
 }
 






More information about the llvm-commits mailing list