[llvm-commits] [llvm] r128005 - /llvm/trunk/include/llvm/Target/TargetMachine.h

Eric Christopher echristo at apple.com
Mon Mar 21 11:06:33 PDT 2011


Author: echristo
Date: Mon Mar 21 13:06:32 2011
New Revision: 128005

URL: http://llvm.org/viewvc/llvm-project?rev=128005&view=rev
Log:
Fix unused param warning.

Modified:
    llvm/trunk/include/llvm/Target/TargetMachine.h

Modified: llvm/trunk/include/llvm/Target/TargetMachine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetMachine.h?rev=128005&r1=128004&r2=128005&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetMachine.h (original)
+++ llvm/trunk/include/llvm/Target/TargetMachine.h Mon Mar 21 13:06:32 2011
@@ -268,7 +268,7 @@
   ///
   virtual bool addPassesToEmitMC(PassManagerBase &,
                                  MCContext *&,
-                                 raw_ostream &OS,
+                                 raw_ostream &,
                                  CodeGenOpt::Level,
                                  bool = true) {
     return true;





More information about the llvm-commits mailing list