[cfe-commits] r165837 - /cfe/trunk/lib/Basic/SourceManager.cpp

Ted Kremenek kremenek at apple.com
Fri Oct 12 15:56:33 PDT 2012


Author: kremenek
Date: Fri Oct 12 17:56:33 2012
New Revision: 165837

URL: http://llvm.org/viewvc/llvm-project?rev=165837&view=rev
Log:
Silence dead store warning.  It is conceptually possible we will
add more code that references SourceFile, so removing the dead store
doesn't seem appropriate for the long term.

Modified:
    cfe/trunk/lib/Basic/SourceManager.cpp

Modified: cfe/trunk/lib/Basic/SourceManager.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Basic/SourceManager.cpp?rev=165837&r1=165836&r2=165837&view=diff
==============================================================================
--- cfe/trunk/lib/Basic/SourceManager.cpp (original)
+++ cfe/trunk/lib/Basic/SourceManager.cpp Fri Oct 12 17:56:33 2012
@@ -1577,6 +1577,7 @@
     }      
   }
   
+  (void) SourceFile;
   return FirstFID;
 }
 





More information about the cfe-commits mailing list