Whitespace cleanups.
authorDan Gohman <gohman@apple.com>
Wed, 14 May 2008 00:43:10 +0000 (00:43 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 14 May 2008 00:43:10 +0000 (00:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51089 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Pass.h
include/llvm/Transforms/Scalar.h
lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

index 06a86f1858b42a9a74591087812952eacae8e753..e5af0c6dc703df9dfe125378387d2ce01d130b76 100644 (file)
@@ -82,8 +82,7 @@ class Pass {
   Pass(const Pass &);           // DO NOT IMPLEMENT
 public:
   explicit Pass(intptr_t pid) : Resolver(0), PassID(pid) {}
-  explicit Pass(const void *pid) : Resolver(0), 
-                                                    PassID((intptr_t)pid) {}
+  explicit Pass(const void *pid) : Resolver(0), PassID((intptr_t)pid) {}
   virtual ~Pass();
 
   /// getPassName - Return a nice clean name for a pass.  This usually
index 650be05aea327d521dc6f96ff74fc316f1027837..9a165c91c99b4757871917dcf2d789e0b35df9d2 100644 (file)
@@ -204,7 +204,7 @@ FunctionPass *createTailDuplicationPass();
 //
 FunctionPass *createJumpThreadingPass();
   
-  //===----------------------------------------------------------------------===//
+//===----------------------------------------------------------------------===//
 //
 // CFGSimplification - Merge basic blocks, eliminate unreachable blocks,
 // simplify terminator instructions, etc...
index 3abeac4b1fb35526780356fa1213b6fff8253979..e8caea2e4918dbb27a314e94d768bf2a0d26869e 100644 (file)
@@ -4004,7 +4004,7 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
     AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
     return Op.ResNo ? Tmp1 : Result;
   }
-   case ISD::FLT_ROUNDS_: {
+  case ISD::FLT_ROUNDS_: {
     MVT::ValueType VT = Node->getValueType(0);
     switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
     default: assert(0 && "This action not supported for this op yet!");