aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-04-09 23:45:17 +0000
committerDevang Patel <dpatel@apple.com>2009-04-09 23:45:17 +0000
commit923838533a005154c3a30271aa3186a633102a9c (patch)
tree447de83268ca29cd54c321a223e1a0b9e2cd88a9 /lib/CodeGen/SelectionDAG
parentc30aa7b3de0ce8c37e9630e8e7a73cb83c808c62 (diff)
downloadexternal_llvm-923838533a005154c3a30271aa3186a633102a9c.zip
external_llvm-923838533a005154c3a30271aa3186a633102a9c.tar.gz
external_llvm-923838533a005154c3a30271aa3186a633102a9c.tar.bz2
Silence unused variable warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68735 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG')
-rw-r--r--lib/CodeGen/SelectionDAG/FastISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp
index e2d85f0..8467330 100644
--- a/lib/CodeGen/SelectionDAG/FastISel.cpp
+++ b/lib/CodeGen/SelectionDAG/FastISel.cpp
@@ -372,7 +372,7 @@ bool FastISel::SelectCall(User *I) {
// Record the source line.
unsigned Line = Subprogram.getLineNumber();
- unsigned LabelID = DW->RecordSourceLine(Line, 0, SrcFile);
+ DW->RecordSourceLine(Line, 0, SrcFile);
setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0)));
// llvm.dbg.func_start also defines beginning of function scope.