diff options
author | David Greene <greened@obbligato.org> | 2010-02-15 17:00:31 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-02-15 17:00:31 +0000 |
commit | 39c6d0187970230fc7675a6587cb3e0415c43a25 (patch) | |
tree | 1310ddd9899213a7df3d714a976ddb2c81ccae6e /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | cbd39c5def6b1b41d40af488719ea8bab4a95f53 (diff) | |
download | bcm5719-llvm-39c6d0187970230fc7675a6587cb3e0415c43a25.tar.gz bcm5719-llvm-39c6d0187970230fc7675a6587cb3e0415c43a25.zip |
Add non-temporal flags and remove an assumption of default arguments.
llvm-svn: 96240
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 1683d01bbab..e88af4f3e02 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -1716,7 +1716,7 @@ TargetLowering::SimplifySetCC(EVT VT, SDValue N0, SDValue N1, SDValue NewLoad = DAG.getLoad(newVT, dl, Lod->getChain(), Ptr, Lod->getSrcValue(), Lod->getSrcValueOffset() + bestOffset, - false, NewAlign); + false, false, NewAlign); return DAG.getSetCC(dl, VT, DAG.getNode(ISD::AND, dl, newVT, NewLoad, DAG.getConstant(bestMask.trunc(bestWidth), |