diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-09-21 06:16:40 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-09-21 06:16:40 +0000 |
| commit | 8363087ba8561a2de041f159e2009e6cc220a1ba (patch) | |
| tree | 4569870ae556765d9e7f38577fe35dc3f54b3660 | |
| parent | c3e05d6e5092bf94d7560292e79ba5fb1525b905 (diff) | |
| download | bcm5719-llvm-8363087ba8561a2de041f159e2009e6cc220a1ba.tar.gz bcm5719-llvm-8363087ba8561a2de041f159e2009e6cc220a1ba.zip | |
ugh, missed a file.
llvm-svn: 114405
| -rw-r--r-- | llvm/include/llvm/CodeGen/MachineMemOperand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/MachineMemOperand.h b/llvm/include/llvm/CodeGen/MachineMemOperand.h index 532ed7cbcbe..10361151678 100644 --- a/llvm/include/llvm/CodeGen/MachineMemOperand.h +++ b/llvm/include/llvm/CodeGen/MachineMemOperand.h @@ -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 { |

