summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Clark <robdclark@gmail.com>2016-01-14 10:18:37 -0500
committerRob Clark <robdclark@gmail.com>2016-01-14 10:18:37 -0500
commitb9dffcc8382c135c2c1d2ca245b9bd8ff68539c9 (patch)
treeed7d3ef7265d913ecff4969d4bbe57e4f9cfd77b
parent8923771f390492b4197d10b6b8040fc7a492e250 (diff)
raise some limits
-rw-r--r--asm/ir-a3xx.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/asm/ir-a3xx.h b/asm/ir-a3xx.h
index 58988cb..ebc641c 100644
--- a/asm/ir-a3xx.h
+++ b/asm/ir-a3xx.h
@@ -40,7 +40,7 @@ struct ir3_shader * ir3_asm_parse(const char *src);
struct ir3_shader_info {
int8_t max_reg; /* highest GPR # used by shader */
int8_t max_half_reg;
- int8_t max_const;
+ int16_t max_const;
};
struct ir3_register {
@@ -125,9 +125,9 @@ struct ir3_instruction {
};
/* somewhat arbitrary limits.. */
-#define MAX_OUTS 32
-#define MAX_INS 32
-#define MAX_CONSTS 32
+#define MAX_OUTS 64
+#define MAX_INS 64
+#define MAX_CONSTS 64
struct ir3_out {
const char *name;