1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

Whitespace cleanups.

llvm-svn: 51089
This commit is contained in:
Dan Gohman 2008-05-14 00:43:10 +00:00
parent fe628b229c
commit ffe0b1f40e
3 changed files with 3 additions and 4 deletions

View 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

View File

@ -204,7 +204,7 @@ FunctionPass *createTailDuplicationPass();
//
FunctionPass *createJumpThreadingPass();
//===----------------------------------------------------------------------===//
//===----------------------------------------------------------------------===//
//
// CFGSimplification - Merge basic blocks, eliminate unreachable blocks,
// simplify terminator instructions, etc...

View 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!");