aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-02 20:17:23 +0000
committerChris Lattner <sabre@nondot.org>2010-04-02 20:17:23 +0000
commit65657aea6fd982c141b764915a45d015b7057431 (patch)
tree6fd1a316fe066b3fb36bfda096dcc2bb3a1681c9 /lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
parentd2c680be1a3161bc53018ae27f6a94628055a3ab (diff)
downloadexternal_llvm-65657aea6fd982c141b764915a45d015b7057431.tar.gz
external_llvm-65657aea6fd982c141b764915a45d015b7057431.tar.bz2
external_llvm-65657aea6fd982c141b764915a45d015b7057431.zip
stop using DebugLoc::getUnknownLoc()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index 59ac24b186..879bdb2cbb 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -546,7 +546,7 @@ void SelectionDAGBuilder::clear() {
PendingExports.clear();
EdgeMapping.clear();
DAG.clear();
- CurDebugLoc = DebugLoc::getUnknownLoc();
+ CurDebugLoc = DebugLoc();
HasTailCall = false;
}