From: Wolfgang (Blub) Bumiller Date: Fri, 29 Jun 2012 13:40:21 +0000 (+0200) Subject: create_call should use store_return as output type for now X-Git-Tag: 0.1-rc1~462 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9e094ddeb54168b75d5984ef29f6a25cc5529949;p=xonotic%2Fgmqcc.git create_call should use store_return as output type for now --- diff --git a/ir.c b/ir.c index 5b94e5b..1f0773f 100644 --- a/ir.c +++ b/ir.c @@ -1053,7 +1053,7 @@ ir_instr* ir_block_create_call(ir_block *self, const char *label, ir_value *func in = ir_instr_new(self, INSTR_CALL0); if (!in) return NULL; - out = ir_value_out(self->owner, label, store_value, func->outtype); + out = ir_value_out(self->owner, label, store_return, func->outtype); if (!out) { ir_instr_delete(in); return NULL;