[PATCH 1/2] AMDGPU/SIInsertWaitcnts: Fix comparison of integers of different signs

Mark Searles via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 11 09:01:03 PDT 2018


LGTM

Mark

On Mon, Jun 11, 2018 at 12:06 AM Hans Wennborg <hans at chromium.org> wrote:

> - llvm-dev, +llvm-commits
>
> Mark, this looks like your code. Can you take a look?
>
>
> On Sun, Jun 10, 2018 at 3:34 PM, Mauro Rossi <issor.oruam at gmail.com>
> wrote:
> > Fixes the following building error:
> >
> > external/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp:1903:61:
> > error: comparison of integers of different signs:
> > 'typename iterator_traits<__wrap_iter<MachineBasicBlock **>
> >::difference_type'
> > (aka 'int') and 'unsigned int' [-Werror,-Wsign-compare]
> >                       BlockWaitcntProcessedSet.end(), &MBB) < Count)) {
> >                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~~
> > 1 error generated.
> >
> > Fixes: 4f520606fc ("[AMDGPU] Do not only rely on BB number when finding
> bottom loop")
> > ---
> >  lib/Target/AMDGPU/SIInsertWaitcnts.cpp | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
> b/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
> > index fb24d528c33..c3c93cc85e2 100644
> > --- a/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
> > +++ b/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
> > @@ -1900,7 +1900,7 @@ bool
> SIInsertWaitcnts::runOnMachineFunction(MachineFunction &MF) {
> >        // If the loop has multiple back-edges, and so more than one
> "bottom"
> >        // basic block, we have to guarantee a re-walk over every blocks.
> >        if ((std::count(BlockWaitcntProcessedSet.begin(),
> > -                      BlockWaitcntProcessedSet.end(), &MBB) < Count)) {
> > +                      BlockWaitcntProcessedSet.end(), &MBB) < (int)
> Count)) {
> >          BlockWaitcntBracketsMap[&MBB]->setRevisitLoop(true);
> >          LLVM_DEBUG(dbgs() << "set-revisit1: Block"
> >                            << ContainingLoop->getHeader()->getNumber()
> << '\n';);
> > --
> > 2.17.1
> >
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180611/d0acb8f8/attachment.html>


More information about the llvm-commits mailing list