X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=ir.c;h=00d81c25dbb5ae3334b560f1e01476c1afd8cc31;hp=f4f386d260b2a93e8e0fdd01f1fb540b2479f2d3;hb=806850e4083d3a993fdb941cddb5c257d37f3617;hpb=09109bb1762d1df4caf6c5a7b6d2b0d789ac2493 diff --git a/ir.c b/ir.c index f4f386d..00d81c2 100644 --- a/ir.c +++ b/ir.c @@ -1125,6 +1125,7 @@ ir_value* ir_value_var(const char *name, int storetype, int vtype) 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->hasvalue = true; + v->cvq = CV_CONST; v->constval.vfloat = value; vec_push(self->globals, v);