[llvm-commits] CVS: llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h Cloning.h FunctionUtils.h Local.h PromoteMemToReg.h UnifyFunctionExitNodes.h

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



Changes in directory llvm/include/llvm/Transforms/Utils:

BasicBlockUtils.h updated: 1.8 -> 1.9
Cloning.h updated: 1.15 -> 1.16
FunctionUtils.h updated: 1.7 -> 1.8
Local.h updated: 1.17 -> 1.18
PromoteMemToReg.h updated: 1.7 -> 1.8
UnifyFunctionExitNodes.h updated: 1.18 -> 1.19
---
Log message:

Remove trailing whitespace


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

 BasicBlockUtils.h        |    4 ++--
 Cloning.h                |   12 ++++++------
 FunctionUtils.h          |    6 +++---
 Local.h                  |    4 ++--
 PromoteMemToReg.h        |    4 ++--
 UnifyFunctionExitNodes.h |    4 ++--
 6 files changed, 17 insertions(+), 17 deletions(-)


Index: llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
diff -u llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h:1.8 llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h:1.9
--- llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h:1.8	Tue Nov 11 16:41:31 2003
+++ llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h	Thu Apr 21 15:59:05 2005
@@ -1,10 +1,10 @@
 //===-- Transform/Utils/BasicBlockUtils.h - BasicBlock Utils ----*- C++ -*-===//
-// 
+//
 //                     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.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This family of functions perform manipulations on basic blocks, and


Index: llvm/include/llvm/Transforms/Utils/Cloning.h
diff -u llvm/include/llvm/Transforms/Utils/Cloning.h:1.15 llvm/include/llvm/Transforms/Utils/Cloning.h:1.16
--- llvm/include/llvm/Transforms/Utils/Cloning.h:1.15	Wed May 19 14:17:48 2004
+++ llvm/include/llvm/Transforms/Utils/Cloning.h	Thu Apr 21 15:59:05 2005
@@ -1,10 +1,10 @@
 //===- Cloning.h - Clone various parts of LLVM programs ---------*- C++ -*-===//
-// 
+//
 //                     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.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file defines various functions that are used to clone chunks of LLVM
@@ -108,7 +108,7 @@
 /// this call.  The program is still in a well defined state if this occurs
 /// though.
 ///
-/// Note that this only does one level of inlining.  For example, if the 
+/// Note that this only does one level of inlining.  For example, if the
 /// instruction 'call B' is inlined, and 'B' calls 'C', then the call to 'C' now
 /// exists in the instruction stream.  Similiarly this will inline a recursive
 /// function by one level.
@@ -117,9 +117,9 @@
 bool InlineFunction(InvokeInst *II);
 bool InlineFunction(CallSite CS);
 
-/// CloneTrace - Returns a copy of the specified trace. 
-/// It takes a vector of basic blocks clones the basic blocks, removes internal 
-/// phi nodes, adds it to the same function as the original (although there is 
+/// CloneTrace - Returns a copy of the specified trace.
+/// It takes a vector of basic blocks clones the basic blocks, removes internal
+/// phi nodes, adds it to the same function as the original (although there is
 /// no jump to it) and returns the new vector of basic blocks.
 std::vector<BasicBlock *> CloneTrace(const std::vector<BasicBlock*> &origTrace);
 


Index: llvm/include/llvm/Transforms/Utils/FunctionUtils.h
diff -u llvm/include/llvm/Transforms/Utils/FunctionUtils.h:1.7 llvm/include/llvm/Transforms/Utils/FunctionUtils.h:1.8
--- llvm/include/llvm/Transforms/Utils/FunctionUtils.h:1.7	Wed Oct 27 11:14:51 2004
+++ llvm/include/llvm/Transforms/Utils/FunctionUtils.h	Thu Apr 21 15:59:05 2005
@@ -1,10 +1,10 @@
 //===-- Transform/Utils/FunctionUtils.h - Function Utils --------*- C++ -*-===//
-// 
+//
 //                     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.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This family of transformations manipulate LLVM functions.
@@ -21,7 +21,7 @@
   struct DominatorSet;
   class Function;
   class Loop;
-  
+
   /// ExtractCodeRegion - rip out a sequence of basic blocks into a new function
   ///
   Function* ExtractCodeRegion(DominatorSet &DS,


Index: llvm/include/llvm/Transforms/Utils/Local.h
diff -u llvm/include/llvm/Transforms/Utils/Local.h:1.17 llvm/include/llvm/Transforms/Utils/Local.h:1.18
--- llvm/include/llvm/Transforms/Utils/Local.h:1.17	Tue Apr 13 14:28:32 2004
+++ llvm/include/llvm/Transforms/Utils/Local.h	Thu Apr 21 15:59:05 2005
@@ -1,10 +1,10 @@
 //===-- Local.h - Functions to perform local transformations ----*- C++ -*-===//
-// 
+//
 //                     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.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This family of functions perform various local transformations to the


Index: llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
diff -u llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h:1.7 llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h:1.8
--- llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h:1.7	Wed Oct 27 11:14:51 2004
+++ llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h	Thu Apr 21 15:59:05 2005
@@ -1,10 +1,10 @@
 //===- PromoteMemToReg.h - Promote Allocas to Scalars -----------*- C++ -*-===//
-// 
+//
 //                     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.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file exposes an interface to promote alloca instructions to SSA


Index: llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
diff -u llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h:1.18 llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h:1.19
--- llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h:1.18	Sat Oct 16 13:06:43 2004
+++ llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h	Thu Apr 21 15:59:05 2005
@@ -1,10 +1,10 @@
 //===-- UnifyFunctionExitNodes.h - Ensure fn's have one return --*- C++ -*-===//
-// 
+//
 //                     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.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This pass is used to ensure that functions have at most one return and one






More information about the llvm-commits mailing list