Skip to content

Commit 5297d8d

Browse files
committed
whitespace
llvm-svn: 152175
1 parent 0c84efe commit 5297d8d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

llvm/lib/CodeGen/ScheduleDAGPrinter.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ namespace llvm {
4141
static bool renderGraphFromBottomUp() {
4242
return true;
4343
}
44-
44+
4545
static bool hasNodeAddressLabel(const SUnit *Node,
4646
const ScheduleDAG *Graph) {
4747
return true;
4848
}
49-
49+
5050
/// If you want to override the dot attributes printed for a particular
5151
/// edge, override this method.
5252
static std::string getEdgeAttributes(const SUnit *Node,
@@ -58,7 +58,7 @@ namespace llvm {
5858
return "color=blue,style=dashed";
5959
return "";
6060
}
61-
61+
6262

6363
std::string getNodeLabel(const SUnit *Node, const ScheduleDAG *Graph);
6464
static std::string getNodeAttributes(const SUnit *N,

llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ void SelectionDAGISel::PrepareEHLandingPad() {
774774

775775
// Assign the call site to the landing pad's begin label.
776776
MF->getMMI().setCallSiteLandingPad(Label, SDB->LPadToCallSiteMap[MBB]);
777-
777+
778778
const MCInstrDesc &II = TM.getInstrInfo()->get(TargetOpcode::EH_LABEL);
779779
BuildMI(*MBB, FuncInfo->InsertPt, SDB->getCurDebugLoc(), II)
780780
.addSym(Label);
@@ -934,9 +934,9 @@ static void collectFailStats(const Instruction *I) {
934934
case Instruction::FPToSI: NumFastIselFailFPToSI++; return;
935935
case Instruction::UIToFP: NumFastIselFailUIToFP++; return;
936936
case Instruction::SIToFP: NumFastIselFailSIToFP++; return;
937-
case Instruction::IntToPtr: NumFastIselFailIntToPtr++; return;
937+
case Instruction::IntToPtr: NumFastIselFailIntToPtr++; return;
938938
case Instruction::PtrToInt: NumFastIselFailPtrToInt++; return;
939-
case Instruction::BitCast: NumFastIselFailBitCast++; return;
939+
case Instruction::BitCast: NumFastIselFailBitCast++; return;
940940

941941
// Other instructions...
942942
case Instruction::ICmp: NumFastIselFailICmp++; return;

0 commit comments

Comments
 (0)