[llvm-commits] [llvm] r114405 - /llvm/trunk/include/llvm/CodeGen/MachineMemOperand.h

Chris Lattner sabre at nondot.org
Mon Sep 20 23:16:40 PDT 2010


Author: lattner
Date: Tue Sep 21 01:16:40 2010
New Revision: 114405

URL: http://llvm.org/viewvc/llvm-project?rev=114405&view=rev
Log:
ugh, missed a file.

Modified:
    llvm/trunk/include/llvm/CodeGen/MachineMemOperand.h

Modified: llvm/trunk/include/llvm/CodeGen/MachineMemOperand.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/MachineMemOperand.h?rev=114405&r1=114404&r2=114405&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/MachineMemOperand.h (original)
+++ llvm/trunk/include/llvm/CodeGen/MachineMemOperand.h Tue Sep 21 01:16:40 2010
@@ -37,7 +37,7 @@
   /// Offset - This is an offset from the base Value*.
   int64_t Offset;
   
-  explicit MachinePointerInfo(const Value *v, int64_t offset = 0)
+  explicit MachinePointerInfo(const Value *v = 0, int64_t offset = 0)
     : V(v), Offset(offset) {}
   
   MachinePointerInfo getWithOffset(int64_t O) const {





More information about the llvm-commits mailing list