Mesa (master): r300: move declaration before code

Brian Paul brianp at kemper.freedesktop.org
Fri May 20 03:23:46 UTC 2011


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

Author: Brian Paul <brianp at vmware.com>
Date:   Thu May 19 21:23:39 2011 -0600

r300: move declaration before code

---

 .../dri/r300/compiler/radeon_compiler_util.c       |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/drivers/dri/r300/compiler/radeon_compiler_util.c b/src/mesa/drivers/dri/r300/compiler/radeon_compiler_util.c
index c8001ba..2742721 100644
--- a/src/mesa/drivers/dri/r300/compiler/radeon_compiler_util.c
+++ b/src/mesa/drivers/dri/r300/compiler/radeon_compiler_util.c
@@ -534,10 +534,10 @@ int rc_get_max_index(
 	rc_register_file file)
 {
 	struct max_data data;
+	struct rc_instruction * inst;
 	data.Max = 0;
 	data.HasFileType = 0;
 	data.File = file;
-	struct rc_instruction * inst;
 	for (inst = c->Program.Instructions.Next;
 					inst != &c->Program.Instructions;
 					inst = inst->Next) {




More information about the mesa-commit mailing list