mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 06:06:19 +00:00
Whitespace cleanups.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51089 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4d9dd6beae
commit
9c78a39907
@ -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
|
||||
|
@ -204,7 +204,7 @@ FunctionPass *createTailDuplicationPass();
|
||||
//
|
||||
FunctionPass *createJumpThreadingPass();
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// CFGSimplification - Merge basic blocks, eliminate unreachable blocks,
|
||||
// simplify terminator instructions, etc...
|
||||
|
@ -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!");
|
||||
|
Loading…
Reference in New Issue
Block a user