Mesa (mesa_7_5_branch): rtasm: Use 32bit constant.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Mon Jun 15 19:28:22 UTC 2009


Module: Mesa
Branch: mesa_7_5_branch
Commit: c33ef1f7c6d93a82c77a6c11fd108bb6d4f8c6af
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c33ef1f7c6d93a82c77a6c11fd108bb6d4f8c6af

Author: José Fonseca <jfonseca at vmware.com>
Date:   Mon Jun 15 19:04:04 2009 +0100

rtasm: Use 32bit constant.

As we're only using 32bit bitmasks.

---

 src/gallium/auxiliary/rtasm/rtasm_ppc.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/gallium/auxiliary/rtasm/rtasm_ppc.c b/src/gallium/auxiliary/rtasm/rtasm_ppc.c
index e358648..ef4b306 100644
--- a/src/gallium/auxiliary/rtasm/rtasm_ppc.c
+++ b/src/gallium/auxiliary/rtasm/rtasm_ppc.c
@@ -168,7 +168,7 @@ ppc_allocate_register(struct ppc_function *p)
 {
    unsigned i;
    for (i = 0; i < PPC_NUM_REGS; i++) {
-      const uint64_t mask = 1 << i;
+      const uint32_t mask = 1 << i;
       if ((p->reg_used & mask) == 0) {
          p->reg_used |= mask;
          return i;
@@ -200,7 +200,7 @@ ppc_allocate_fp_register(struct ppc_function *p)
 {
    unsigned i;
    for (i = 0; i < PPC_NUM_FP_REGS; i++) {
-      const uint64_t mask = 1 << i;
+      const uint32_t mask = 1 << i;
       if ((p->fp_used & mask) == 0) {
          p->fp_used |= mask;
          return i;
@@ -232,7 +232,7 @@ ppc_allocate_vec_register(struct ppc_function *p)
 {
    unsigned i;
    for (i = 0; i < PPC_NUM_VEC_REGS; i++) {
-      const uint64_t mask = 1 << i;
+      const uint32_t mask = 1 << i;
       if ((p->vec_used & mask) == 0) {
          p->vec_used |= mask;
          return i;




More information about the mesa-commit mailing list