mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-12 03:32:10 +00:00
whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152175 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
084e179f09
commit
acddd4963d
@ -41,12 +41,12 @@ namespace llvm {
|
|||||||
static bool renderGraphFromBottomUp() {
|
static bool renderGraphFromBottomUp() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool hasNodeAddressLabel(const SUnit *Node,
|
static bool hasNodeAddressLabel(const SUnit *Node,
|
||||||
const ScheduleDAG *Graph) {
|
const ScheduleDAG *Graph) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// If you want to override the dot attributes printed for a particular
|
/// If you want to override the dot attributes printed for a particular
|
||||||
/// edge, override this method.
|
/// edge, override this method.
|
||||||
static std::string getEdgeAttributes(const SUnit *Node,
|
static std::string getEdgeAttributes(const SUnit *Node,
|
||||||
@ -58,7 +58,7 @@ namespace llvm {
|
|||||||
return "color=blue,style=dashed";
|
return "color=blue,style=dashed";
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
std::string getNodeLabel(const SUnit *Node, const ScheduleDAG *Graph);
|
std::string getNodeLabel(const SUnit *Node, const ScheduleDAG *Graph);
|
||||||
static std::string getNodeAttributes(const SUnit *N,
|
static std::string getNodeAttributes(const SUnit *N,
|
||||||
|
@ -774,7 +774,7 @@ void SelectionDAGISel::PrepareEHLandingPad() {
|
|||||||
|
|
||||||
// Assign the call site to the landing pad's begin label.
|
// Assign the call site to the landing pad's begin label.
|
||||||
MF->getMMI().setCallSiteLandingPad(Label, SDB->LPadToCallSiteMap[MBB]);
|
MF->getMMI().setCallSiteLandingPad(Label, SDB->LPadToCallSiteMap[MBB]);
|
||||||
|
|
||||||
const MCInstrDesc &II = TM.getInstrInfo()->get(TargetOpcode::EH_LABEL);
|
const MCInstrDesc &II = TM.getInstrInfo()->get(TargetOpcode::EH_LABEL);
|
||||||
BuildMI(*MBB, FuncInfo->InsertPt, SDB->getCurDebugLoc(), II)
|
BuildMI(*MBB, FuncInfo->InsertPt, SDB->getCurDebugLoc(), II)
|
||||||
.addSym(Label);
|
.addSym(Label);
|
||||||
@ -934,9 +934,9 @@ static void collectFailStats(const Instruction *I) {
|
|||||||
case Instruction::FPToSI: NumFastIselFailFPToSI++; return;
|
case Instruction::FPToSI: NumFastIselFailFPToSI++; return;
|
||||||
case Instruction::UIToFP: NumFastIselFailUIToFP++; return;
|
case Instruction::UIToFP: NumFastIselFailUIToFP++; return;
|
||||||
case Instruction::SIToFP: NumFastIselFailSIToFP++; return;
|
case Instruction::SIToFP: NumFastIselFailSIToFP++; return;
|
||||||
case Instruction::IntToPtr: NumFastIselFailIntToPtr++; return;
|
case Instruction::IntToPtr: NumFastIselFailIntToPtr++; return;
|
||||||
case Instruction::PtrToInt: NumFastIselFailPtrToInt++; return;
|
case Instruction::PtrToInt: NumFastIselFailPtrToInt++; return;
|
||||||
case Instruction::BitCast: NumFastIselFailBitCast++; return;
|
case Instruction::BitCast: NumFastIselFailBitCast++; return;
|
||||||
|
|
||||||
// Other instructions...
|
// Other instructions...
|
||||||
case Instruction::ICmp: NumFastIselFailICmp++; return;
|
case Instruction::ICmp: NumFastIselFailICmp++; return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user