glsl: Eliminate assumptions about size of ir_expression::operands
This may grow in the near future.
This commit is contained in:
@@ -22,6 +22,7 @@
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include "main/compiler.h"
|
||||
#include "ir.h"
|
||||
#include "glsl_types.h"
|
||||
extern "C" {
|
||||
@@ -160,7 +161,7 @@ ir_call::clone(void *mem_ctx, struct hash_table *ht) const
|
||||
ir_expression *
|
||||
ir_expression::clone(void *mem_ctx, struct hash_table *ht) const
|
||||
{
|
||||
ir_rvalue *op[2] = {NULL, NULL};
|
||||
ir_rvalue *op[Elements(this->operands)] = { NULL, };
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < get_num_operands(); i++) {
|
||||
|
Reference in New Issue
Block a user