ir_builder_imm_float: add IR_FLAG_ERASEABLE

This commit is contained in:
Wolfgang Bumiller 2014-10-18 14:25:28 +02:00
parent 806850e408
commit ddb0b7dd9d

1
ir.c
View file

@ -1124,6 +1124,7 @@ ir_value* ir_value_var(const char *name, int storetype, int vtype)
/* helper function */
static ir_value* ir_builder_imm_float(ir_builder *self, float value, bool add_to_list) {
ir_value *v = ir_value_var("#IMMEDIATE", store_global, TYPE_FLOAT);
v->flags |= IR_FLAG_ERASEABLE;
v->hasvalue = true;
v->cvq = CV_CONST;
v->constval.vfloat = value;