diff options
| author | David Greene <greened@obbligato.org> | 2010-02-15 16:57:43 +0000 |
|---|---|---|
| committer | David Greene <greened@obbligato.org> | 2010-02-15 16:57:43 +0000 |
| commit | cbd39c5def6b1b41d40af488719ea8bab4a95f53 (patch) | |
| tree | c8bddd2d7c645fdcdce412e2af2f129575038111 /llvm/lib | |
| parent | 15478ac350c33d4858c8abad9b01e5fbf6c97b81 (diff) | |
| download | bcm5719-llvm-cbd39c5def6b1b41d40af488719ea8bab4a95f53.tar.gz bcm5719-llvm-cbd39c5def6b1b41d40af488719ea8bab4a95f53.zip | |
Remove an assumption of default arguments. This is in anticipation of a
change to SelectionDAG build APIs.
llvm-svn: 96239
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelDAGToDAG.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp b/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp index a23ab911cf8..7bd935d2bb6 100644 --- a/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp +++ b/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp @@ -652,9 +652,10 @@ void X86DAGToDAGISel::PreprocessForFPConvert() { // FIXME: optimize the case where the src/dest is a load or store? SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl, N->getOperand(0), - MemTmp, NULL, 0, MemVT); + MemTmp, NULL, 0, MemVT, + false, false, 0); SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp, - NULL, 0, MemVT); + NULL, 0, MemVT, false, false, 0); // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the // extload we created. This will cause general havok on the dag because |

