ugh, missed a file.
authorChris Lattner <sabre@nondot.org>
Tue, 21 Sep 2010 06:16:40 +0000 (06:16 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 21 Sep 2010 06:16:40 +0000 (06:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114405 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineMemOperand.h

index 532ed7cbcbecb0f3260a33d7b25477060f0d0986..1036115167833f8b33d1b296692cf0c3b608dd09 100644 (file)
@@ -37,7 +37,7 @@ struct MachinePointerInfo {
   /// 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 {