Deleted Added
full compact
ScheduleDAGSDNodes.h (198090) ScheduleDAGSDNodes.h (198892)
1//===---- ScheduleDAGSDNodes.h - SDNode Scheduling --------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 44 unchanged lines hidden (view full) ---

53 if (isa<ConstantFPSDNode>(Node)) return true;
54 if (isa<RegisterSDNode>(Node)) return true;
55 if (isa<GlobalAddressSDNode>(Node)) return true;
56 if (isa<BasicBlockSDNode>(Node)) return true;
57 if (isa<FrameIndexSDNode>(Node)) return true;
58 if (isa<ConstantPoolSDNode>(Node)) return true;
59 if (isa<JumpTableSDNode>(Node)) return true;
60 if (isa<ExternalSymbolSDNode>(Node)) return true;
1//===---- ScheduleDAGSDNodes.h - SDNode Scheduling --------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 44 unchanged lines hidden (view full) ---

53 if (isa<ConstantFPSDNode>(Node)) return true;
54 if (isa<RegisterSDNode>(Node)) return true;
55 if (isa<GlobalAddressSDNode>(Node)) return true;
56 if (isa<BasicBlockSDNode>(Node)) return true;
57 if (isa<FrameIndexSDNode>(Node)) return true;
58 if (isa<ConstantPoolSDNode>(Node)) return true;
59 if (isa<JumpTableSDNode>(Node)) return true;
60 if (isa<ExternalSymbolSDNode>(Node)) return true;
61 if (isa<BlockAddressSDNode>(Node)) return true;
61 if (Node->getOpcode() == ISD::EntryToken) return true;
62 return false;
63 }
64
65 /// NewSUnit - Creates a new SUnit and return a ptr to it.
66 ///
67 SUnit *NewSUnit(SDNode *N) {
68#ifndef NDEBUG

--- 48 unchanged lines hidden ---
62 if (Node->getOpcode() == ISD::EntryToken) return true;
63 return false;
64 }
65
66 /// NewSUnit - Creates a new SUnit and return a ptr to it.
67 ///
68 SUnit *NewSUnit(SDNode *N) {
69#ifndef NDEBUG

--- 48 unchanged lines hidden ---