[llvm] r303745 - [Hexagon] Fix comment in HexagonPacketizer::runOnMachineFunction
Krzysztof Parzyszek via llvm-commits
llvm-commits at lists.llvm.org
Wed May 24 06:43:42 PDT 2017
Author: kparzysz
Date: Wed May 24 08:43:42 2017
New Revision: 303745
URL: http://llvm.org/viewvc/llvm-project?rev=303745&view=rev
Log:
[Hexagon] Fix comment in HexagonPacketizer::runOnMachineFunction
Patch by Wei-Ren Chen.
Differential Revision: https://reviews.llvm.org/D33439
Modified:
llvm/trunk/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
Modified: llvm/trunk/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp?rev=303745&r1=303744&r2=303745&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp (original)
+++ llvm/trunk/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp Wed May 24 08:43:42 2017
@@ -214,12 +214,12 @@ bool HexagonPacketizer::runOnMachineFunc
for (auto &MB : MF) {
auto Begin = MB.begin(), End = MB.end();
while (Begin != End) {
- // First the first non-boundary starting from the end of the last
+ // Find the first non-boundary starting from the end of the last
// scheduling region.
MachineBasicBlock::iterator RB = Begin;
while (RB != End && HII->isSchedulingBoundary(*RB, &MB, MF))
++RB;
- // First the first boundary starting from the beginning of the new
+ // Find the first boundary starting from the beginning of the new
// region.
MachineBasicBlock::iterator RE = RB;
while (RE != End && !HII->isSchedulingBoundary(*RE, &MB, MF))
More information about the llvm-commits
mailing list