Remove an assumption of default arguments. This is in anticipation of a
authorDavid Greene <greened@obbligato.org>
Mon, 15 Feb 2010 16:57:43 +0000 (16:57 +0000)
committerDavid Greene <greened@obbligato.org>
Mon, 15 Feb 2010 16:57:43 +0000 (16:57 +0000)
change to SelectionDAG build APIs.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96239 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelDAGToDAG.cpp

index a23ab911cf8b5de59d573f7677db21159a65e7cd..7bd935d2bb64d50d7d8dd764eeb48099a7bbb4e0 100644 (file)
@@ -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