[llvm-commits] CVS: llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp

Reid Spencer reid at x10sys.com
Thu Nov 2 12:27:04 PST 2006



Changes in directory llvm/tools/llvm-bcanalyzer:

llvm-bcanalyzer.cpp updated: 1.7 -> 1.8
---
Log message:

For PR786: http://llvm.org/PR786 :
Turn on -Wunused and -Wno-unused-parameter. Clean up most of the resulting
fall out by removing unused variables. Remaining warnings have to do with
unused functions (I didn't want to delete code without review) and unused
variables in generated code. Maintainers should clean up the remaining 
issues when they see them. All changes pass DejaGnu tests and Olden.


---
Diffs of the changes:  (+0 -1)

 llvm-bcanalyzer.cpp |    1 -
 1 files changed, 1 deletion(-)


Index: llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
diff -u llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp:1.7 llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp:1.8
--- llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp:1.7	Thu Jul  6 13:01:01 2006
+++ llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp	Thu Nov  2 14:25:50 2006
@@ -57,7 +57,6 @@
     sys::PrintStackTraceOnErrorSignal();
 
     std::ostream* Out = &std::cout;  // Default to printing to stdout...
-    std::istream* In  = &std::cin;   // Default to reading stdin
     std::string ErrorMessage;
     BytecodeAnalysis bca;
 






More information about the llvm-commits mailing list