Keep tabs and trailing spaces out.
[oota-llvm.git] / include / llvm / Analysis / ScalarEvolutionExpander.h
index 0e5d47fd3f5cdd73a953cfd8d5bfdbdd086e8892..3e05ab0c09706fe82eb15e0679b0ee62d03e9219 100644 (file)
@@ -42,10 +42,10 @@ namespace llvm {
     SCEVExpander(ScalarEvolution &se, LoopInfo &li) : SE(se), LI(li) {}
 
     /// clear - Erase the contents of the InsertedExpressions map so that users
-    /// trying to expand the same expression into multiple BasicBlocks or 
+    /// trying to expand the same expression into multiple BasicBlocks or
     /// different places within the same BasicBlock can do so.
     void clear() { InsertedExpressions.clear(); }
-    
+
     /// isInsertedInstruction - Return true if the specified instruction was
     /// inserted by the code rewriter.  If so, the client should not modify the
     /// instruction.