summaryrefslogtreecommitdiffstats
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
commita68bdef4823e0764fde7e9f44beefd2c561204a6 (patch)
tree76f9c543bacb547e18725999d2f68b3ff1794faa
parent66ab904f5a6933ccf8c520d7a587fadf2bc79b2f (diff)
downloadbcm5719-llvm-a68bdef4823e0764fde7e9f44beefd2c561204a6.tar.gz
bcm5719-llvm-a68bdef4823e0764fde7e9f44beefd2c561204a6.zip
Silence unused variable warning.
llvm-svn: 68735
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/FastISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
index e2d85f01b16..8467330bb9b 100644
--- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
+++ b/llvm/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.
OpenPOWER on IntegriCloud