[Mesa-dev] [PATCH] nv50/ir/nir: prefer to shift 1ull instead of 1ll
Karol Herbst
kherbst at redhat.com
Sun May 12 13:51:32 UTC 2019
Signed-off-by: Karol Herbst <kherbst at redhat.com>
Suggested-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
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
More information about the mesa-dev
mailing list