ugh, missed a file.

llvm-svn: 114405
This commit is contained in:
Chris Lattner 2010-09-21 06:16:40 +00:00
parent c3e05d6e50
commit 8363087ba8
1 changed files with 1 additions and 1 deletions

View 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 {