summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-01-30 23:03:19 +0000
committerBill Wendling <isanbard@gmail.com>2009-01-30 23:03:19 +0000
commit8fb81f1b3d32e8e8a2b012438c65624e87b306af (patch)
treeaa1c14894ffb8c2d7dcaf720bc4b9ee8424f8d2f /llvm/lib/Target
parent3dc5d2454e8e31df587c7dc27ddbce853d4f34df (diff)
downloadbcm5719-llvm-8fb81f1b3d32e8e8a2b012438c65624e87b306af.tar.gz
bcm5719-llvm-8fb81f1b3d32e8e8a2b012438c65624e87b306af.zip
Get rid of the non-DebugLoc-ified getNOT() method.
llvm-svn: 63442
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r--llvm/lib/Target/X86/X86ISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index e17ae99b5c9..2aa2e4af44a 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -5280,7 +5280,7 @@ SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
// 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;
}
OpenPOWER on IntegriCloud