getLoad() and getStore() calls missed SVOffset operand. Thanks to Dan Gohman

for pointing it out!

llvm-svn: 32712
This commit is contained in:
Evan Cheng 2006-12-20 01:27:29 +00:00
parent 93acb49182
commit 258657e64e
1 changed files with 2 additions and 2 deletions
llvm/lib/CodeGen/SelectionDAG

View File

@ -1835,7 +1835,7 @@ SDOperand SelectionDAGLowering::getLoadFrom(const Type *Ty, SDOperand Ptr,
L = DAG.getVecLoad(PTy->getNumElements(), PVT, Root, Ptr,
DAG.getSrcValue(SV));
} else {
L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SV, isVolatile);
L = DAG.getLoad(TLI.getValueType(Ty), Root, Ptr, SV, 0, isVolatile);
}
if (isVolatile)
@ -1851,7 +1851,7 @@ void SelectionDAGLowering::visitStore(StoreInst &I) {
Value *SrcV = I.getOperand(0);
SDOperand Src = getValue(SrcV);
SDOperand Ptr = getValue(I.getOperand(1));
DAG.setRoot(DAG.getStore(getRoot(), Src, Ptr, I.getOperand(1),
DAG.setRoot(DAG.getStore(getRoot(), Src, Ptr, I.getOperand(1), 0,
I.isVolatile()));
}