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

Misha Brukman brukman at cs.uiuc.edu
Thu Apr 21 16:59:59 PDT 2005



Changes in directory llvm/tools/opt:

opt.cpp updated: 1.106 -> 1.107
---
Log message:

Remove trailing whitespace


---
Diffs of the changes:  (+3 -3)

 opt.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/tools/opt/opt.cpp
diff -u llvm/tools/opt/opt.cpp:1.106 llvm/tools/opt/opt.cpp:1.107
--- llvm/tools/opt/opt.cpp:1.106	Sat Jan 22 11:36:17 2005
+++ llvm/tools/opt/opt.cpp	Thu Apr 21 18:59:48 2005
@@ -1,10 +1,10 @@
 //===- opt.cpp - The LLVM Modular Optimizer -------------------------------===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file was developed by the LLVM research group and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // Optimizations may be specified an arbitrary number of times on the command
@@ -137,7 +137,7 @@
     // Create a new optimization pass for each one specified on the command line
     for (unsigned i = 0; i < OptimizationList.size(); ++i) {
       const PassInfo *Opt = OptimizationList[i];
-      
+
       if (Opt->getNormalCtor())
         Passes.add(Opt->getNormalCtor()());
       else if (Opt->getTargetCtor()) {






More information about the llvm-commits mailing list