diff --git a/llvm/include/llvm/Pass.h b/llvm/include/llvm/Pass.h index 06a86f1858b42a9a74591087812952eacae8e753..e5af0c6dc703df9dfe125378387d2ce01d130b76 100644 --- a/llvm/include/llvm/Pass.h +++ b/llvm/include/llvm/Pass.h @@ -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 diff --git a/llvm/include/llvm/Transforms/Scalar.h b/llvm/include/llvm/Transforms/Scalar.h index 650be05aea327d521dc6f96ff74fc316f1027837..9a165c91c99b4757871917dcf2d789e0b35df9d2 100644 --- a/llvm/include/llvm/Transforms/Scalar.h +++ b/llvm/include/llvm/Transforms/Scalar.h @@ -204,7 +204,7 @@ FunctionPass *createTailDuplicationPass(); // FunctionPass *createJumpThreadingPass(); - //===----------------------------------------------------------------------===// +//===----------------------------------------------------------------------===// // // CFGSimplification - Merge basic blocks, eliminate unreachable blocks, // simplify terminator instructions, etc... diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 3abeac4b1fb35526780356fa1213b6fff8253979..e8caea2e4918dbb27a314e94d768bf2a0d26869e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -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!");