diff options
author | Hendrik Greving <hgreving@google.com> | 2020-05-21 13:17:18 -0700 |
---|---|---|
committer | Hendrik Greving <hgreving@google.com> | 2020-05-21 13:18:07 -0700 |
commit | 8a6a2c4cb66d2c3202c9bb0d532ffbb265c4f3f1 (patch) | |
tree | b8988c2a6034bc2bdce16903d91b0a8aa1611b15 /llvm/lib/CodeGen/ModuloSchedule.cpp | |
parent | 396bbae41604637008bd5102e1d02d4543f1c3c9 (diff) | |
download | llvm-8a6a2c4cb66d2c3202c9bb0d532ffbb265c4f3f1.zip llvm-8a6a2c4cb66d2c3202c9bb0d532ffbb265c4f3f1.tar.gz llvm-8a6a2c4cb66d2c3202c9bb0d532ffbb265c4f3f1.tar.bz2 |
[ModuloSchedule] Add missing comma.
This is a test commit as per Chris to verify commit access.
Thanks!
Diffstat (limited to 'llvm/lib/CodeGen/ModuloSchedule.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ModuloSchedule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/ModuloSchedule.cpp b/llvm/lib/CodeGen/ModuloSchedule.cpp index 944a295..aa35996 100644 --- a/llvm/lib/CodeGen/ModuloSchedule.cpp +++ b/llvm/lib/CodeGen/ModuloSchedule.cpp @@ -420,7 +420,7 @@ void ModuloScheduleExpander::generateExistingPhis( unsigned NewReg = 0; unsigned AccessStage = (LoopValStage != -1) ? LoopValStage : StageScheduled; // In the epilog, we may need to look back one stage to get the correct - // Phi name because the epilog and prolog blocks execute the same stage. + // Phi name, because the epilog and prolog blocks execute the same stage. // The correct name is from the previous block only when the Phi has // been completely scheduled prior to the epilog, and Phi value is not // needed in multiple stages. |