diff options
author | Jan Wen Voung <jvoung@google.com> | 2010-12-01 01:38:58 +0000 |
---|---|---|
committer | Jan Wen Voung <jvoung@google.com> | 2010-12-01 01:38:58 +0000 |
commit | d602c2cc199160d26dc2e9d189e1aca8a8d626e1 (patch) | |
tree | bd1fb61f5827671a21394f8458853677ba412d48 /llvm/lib/Target/ARM/ARMConstantPoolValue.cpp | |
parent | c25545a1a7e5e753bddaea987b92732a4de362ce (diff) | |
download | bcm5719-llvm-d602c2cc199160d26dc2e9d189e1aca8a8d626e1.tar.gz bcm5719-llvm-d602c2cc199160d26dc2e9d189e1aca8a8d626e1.zip |
Initialize an ARMConstantPoolValue field.
llvm-svn: 120525
Diffstat (limited to 'llvm/lib/Target/ARM/ARMConstantPoolValue.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMConstantPoolValue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp b/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp index 3143452f73a..165a1d849ad 100644 --- a/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp +++ b/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp @@ -43,7 +43,7 @@ ARMConstantPoolValue::ARMConstantPoolValue(const GlobalValue *gv, ARMCP::ARMCPModifier Modif) : MachineConstantPoolValue((const Type*)Type::getInt32Ty(gv->getContext())), CVal(gv), S(NULL), LabelId(0), Kind(ARMCP::CPValue), PCAdjust(0), - Modifier(Modif) {} + Modifier(Modif), AddCurrentAddress(false) {} const GlobalValue *ARMConstantPoolValue::getGV() const { return dyn_cast_or_null<GlobalValue>(CVal); |