diff options
author | Dan Gohman <gohman@apple.com> | 2008-05-14 00:43:10 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-05-14 00:43:10 +0000 |
commit | 9c78a399076f8356a53ee67dca9c78e594e34967 (patch) | |
tree | aa6239b2f7fc6c5ccc01746bc39e4aa76a00099d | |
parent | 4d9dd6beae061712b6be8befa301b1376fd6d70d (diff) | |
download | external_llvm-9c78a399076f8356a53ee67dca9c78e594e34967.zip external_llvm-9c78a399076f8356a53ee67dca9c78e594e34967.tar.gz external_llvm-9c78a399076f8356a53ee67dca9c78e594e34967.tar.bz2 |
Whitespace cleanups.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51089 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Pass.h | 3 | ||||
-rw-r--r-- | include/llvm/Transforms/Scalar.h | 2 | ||||
-rw-r--r-- | lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h index 06a86f1..e5af0c6 100644 --- a/include/llvm/Pass.h +++ b/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/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h index 650be05..9a165c9 100644 --- a/include/llvm/Transforms/Scalar.h +++ b/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/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 3abeac4..e8caea2 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/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!"); |