Mesa (master): gallivm: add const qualifiers, fix comment string

Brian Paul brianp at kemper.freedesktop.org
Fri Nov 5 14:52:20 UTC 2010


Module: Mesa
Branch: master
Commit: 55c5408ad049423597cd274e7abcd2d91a16ead3
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=55c5408ad049423597cd274e7abcd2d91a16ead3

Author: Brian Paul <brianp at vmware.com>
Date:   Fri Nov  5 08:51:53 2010 -0600

gallivm: add const qualifiers, fix comment string

---

 src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
index 897b09f..9f21e6d 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
+++ b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
@@ -1178,9 +1178,8 @@ emit_declaration(
    const struct tgsi_full_declaration *decl)
 {
    LLVMTypeRef vec_type = bld->base.vec_type;
-
-   unsigned first = decl->Range.First;
-   unsigned last = decl->Range.Last;
+   const unsigned first = decl->Range.First;
+   const unsigned last = decl->Range.Last;
    unsigned idx, i;
 
    for (idx = first; idx <= last; ++idx) {
@@ -1193,7 +1192,8 @@ emit_declaration(
             LLVMValueRef array_size = LLVMConstInt(LLVMInt32Type(),
                                                    last*4 + 4, 0);
             bld->temps_array = lp_build_array_alloca(bld->base.builder,
-                                                     vec_type, array_size, "temparray");
+                                                     vec_type, array_size,
+                                                     "temporary");
             idx = last;
          } else {
             for (i = 0; i < NUM_CHANNELS; i++)




More information about the mesa-commit mailing list