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 | e467d168d09e9d2bc9c598bde341921bba82baaa (patch) | |
tree | 7d3a4a50c523d75e8082d08c148ce02e62977ab9 /include/llvm/CodeGen/MachineMemOperand.h | |
parent | 51abfe490b62a936dc87462a2b1ddc450651ac6e (diff) |
ugh, missed a file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114405 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineMemOperand.h')
-rw-r--r-- | include/llvm/CodeGen/MachineMemOperand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineMemOperand.h b/include/llvm/CodeGen/MachineMemOperand.h index 532ed7cbcb..1036115167 100644 --- a/include/llvm/CodeGen/MachineMemOperand.h +++ b/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 { |