Get rid of the non-DebugLoc-ified getNOT() method.

llvm-svn: 63442
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index e17ae99..2aa2e4a 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -5280,7 +5280,7 @@
 
   // If the logical-not of the result is required, perform that now.
   if (Invert)
-    Result = DAG.getNOT(Result, VT);
+    Result = DAG.getNOT(Op.getDebugLoc(), Result, VT);
 
   return Result;
 }