radeonsi: remove unused and not useful variables
[mesa.git] / src / gallium / drivers / r300 / compiler / radeon_compiler.h
index f78a51c19c3f544c9f926d0f995666eb8782815c..e2710d848c5ac6cf938a1dabb4ae8b48b476fb01 100644 (file)
@@ -44,6 +44,7 @@ enum rc_program_type {
 struct radeon_compiler {
        struct memory_pool Pool;
        struct rc_program Program;
+       const struct rc_regalloc_state *regalloc_state;
        enum rc_program_type type;
        unsigned Debug:2;
        unsigned Error:1;
@@ -77,7 +78,7 @@ struct radeon_compiler {
        unsigned initial_num_insts; /* Number of instructions at start. */
 };
 
-void rc_init(struct radeon_compiler * c);
+void rc_init(struct radeon_compiler * c, const struct rc_regalloc_state *rs);
 void rc_destroy(struct radeon_compiler * c);
 
 void rc_debug(struct radeon_compiler * c, const char * fmt, ...);