[llvm-commits] [llvm] r47556 - in /llvm/trunk/include/llvm: ParamAttrsList.h Transforms/Utils/BasicBlockUtils.h

Chris Lattner sabre at nondot.org
Mon Feb 25 11:21:38 PST 2008


Author: lattner
Date: Mon Feb 25 13:21:38 2008
New Revision: 47556

URL: http://llvm.org/viewvc/llvm-project?rev=47556&view=rev
Log:
prune #includes, fit in 80 cols.

Modified:
    llvm/trunk/include/llvm/ParamAttrsList.h
    llvm/trunk/include/llvm/Transforms/Utils/BasicBlockUtils.h

Modified: llvm/trunk/include/llvm/ParamAttrsList.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ParamAttrsList.h?rev=47556&r1=47555&r2=47556&view=diff

==============================================================================
--- llvm/trunk/include/llvm/ParamAttrsList.h (original)
+++ llvm/trunk/include/llvm/ParamAttrsList.h Mon Feb 25 13:21:38 2008
@@ -10,17 +10,16 @@
 // This file contains classes used to represent the parameter attributes
 // associated with functions and their calls.
 //
-// The implementation of ParamAttrsList is in lib/VMCore/ParameterAttributes.cpp.
+// The implementation of ParamAttrsList is in VMCore/ParameterAttributes.cpp.
 //
 //===----------------------------------------------------------------------===//
 
 #ifndef LLVM_PARAM_ATTRS_LIST_H
 #define LLVM_PARAM_ATTRS_LIST_H
 
+#include "llvm/ParameterAttributes.h"
 #include "llvm/ADT/SmallVector.h"
 #include "llvm/ADT/FoldingSet.h"
-#include "llvm/ParameterAttributes.h"
-#include <cassert>
 
 namespace llvm {
 

Modified: llvm/trunk/include/llvm/Transforms/Utils/BasicBlockUtils.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Transforms/Utils/BasicBlockUtils.h?rev=47556&r1=47555&r2=47556&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Transforms/Utils/BasicBlockUtils.h (original)
+++ llvm/trunk/include/llvm/Transforms/Utils/BasicBlockUtils.h Mon Feb 25 13:21:38 2008
@@ -61,9 +61,11 @@
                     bool AllowIdenticalEdges = false);
 
 /// SplitCriticalEdge - If this edge is a critical edge, insert a new node to
-/// split the critical edge.  This will update DominatorTree, and DominatorFrontier 
-/// information if it is available, thus calling this pass will not invalidate 
-/// either of them. This returns true if the edge was split, false otherwise.  
+/// split the critical edge.  This will update DominatorTree and
+/// DominatorFrontier information if it is available, thus calling this pass
+/// will not invalidate either of them. This returns true if the edge was split,
+/// false otherwise.  
+///
 /// If MergeIdenticalEdges is true (the default), *all* edges from TI to the 
 /// specified successor will be merged into the same critical edge block.  
 /// This is most commonly interesting with switch instructions, which may 





More information about the llvm-commits mailing list