[llvm-commits] [llvm] r68735 - /llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp

Devang Patel dpatel at apple.com
Thu Apr 9 16:45:17 PDT 2009


Author: dpatel
Date: Thu Apr  9 18:45:17 2009
New Revision: 68735

URL: http://llvm.org/viewvc/llvm-project?rev=68735&view=rev
Log:
Silence unused variable warning.

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp?rev=68735&r1=68734&r2=68735&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp Thu Apr  9 18:45:17 2009
@@ -372,7 +372,7 @@
 
       // 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.





More information about the llvm-commits mailing list