[PATCH] D33439: Fix comment in HexagonPacketizer::runOnMachineFunction
Krzysztof Parzyszek via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 24 06:43:59 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL303745: [Hexagon] Fix comment in HexagonPacketizer::runOnMachineFunction (authored by kparzysz).
Changed prior to commit:
https://reviews.llvm.org/D33439?vs=99892&id=100078#toc
Repository:
rL LLVM
https://reviews.llvm.org/D33439
Files:
llvm/trunk/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
Index: llvm/trunk/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
===================================================================
--- llvm/trunk/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
+++ llvm/trunk/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
@@ -214,12 +214,12 @@
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))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D33439.100078.patch
Type: text/x-patch
Size: 954 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170524/7feb5f30/attachment.bin>
More information about the llvm-commits
mailing list