diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-04-09 21:18:34 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-04-09 21:18:34 +0000 |
| commit | 288c99440304b4dfcd9ab05bcf56e8a30b04de4e (patch) | |
| tree | 40b1d4c1a4a058161b0055c2a09927d07be80c27 | |
| parent | 09d78fc3cfb2c0842413920a737f5783af65ab71 (diff) | |
| download | bcm5719-llvm-288c99440304b4dfcd9ab05bcf56e8a30b04de4e.tar.gz bcm5719-llvm-288c99440304b4dfcd9ab05bcf56e8a30b04de4e.zip | |
add a default ctor for AddrMode.
llvm-svn: 35832
| -rw-r--r-- | llvm/include/llvm/Target/TargetLowering.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm/Target/TargetLowering.h b/llvm/include/llvm/Target/TargetLowering.h index 139580a7dfc..97b12b4d40c 100644 --- a/llvm/include/llvm/Target/TargetLowering.h +++ b/llvm/include/llvm/Target/TargetLowering.h @@ -872,6 +872,7 @@ public: int64_t BaseOffs; bool HasBaseReg; int64_t Scale; + AddrMode() : BaseGV(0), BaseOffs(0), HasBaseReg(false), Scale(0) {} }; /// isLegalAddressingMode - Return true if the addressing mode represented by |

