Reviewed-by: Pierre Moreau <[email protected]>
On 2019-05-12 — 15:51, Karol Herbst wrote: > Signed-off-by: Karol Herbst <[email protected]> > Suggested-by: Ilia Mirkin <[email protected]> > --- > src/gallium/drivers/nouveau/codegen/nv50_ir_from_nir.cpp | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_nir.cpp > b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_nir.cpp > index a9a24267245..7e59b83e8fc 100644 > --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_nir.cpp > +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_nir.cpp > @@ -1334,7 +1334,7 @@ bool Converter::assignSlots() { > else > info->out[vary].mask |= ((1 << comp) - 1) << frac; > > - if (nir->info.outputs_read & 1ll << slot) > + if (nir->info.outputs_read & 1ull << slot) > info->out[vary].oread = 1; > } > info->numOutputs = std::max<uint8_t>(info->numOutputs, vary); > @@ -1342,7 +1342,7 @@ bool Converter::assignSlots() { > > info->numSysVals = 0; > for (uint8_t i = 0; i < 64; ++i) { > - if (!(nir->info.system_values_read & 1ll << i)) > + if (!(nir->info.system_values_read & 1ull << i)) > continue; > > system_val_to_tgsi_semantic(i, &name, &index); > -- > 2.21.0 > > _______________________________________________ > mesa-dev mailing list > [email protected] > https://lists.freedesktop.org/mailman/listinfo/mesa-dev
signature.asc
Description: PGP signature
_______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
