From 9e094ddeb54168b75d5984ef29f6a25cc5529949 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Fri, 29 Jun 2012 15:40:21 +0200 Subject: [PATCH] create_call should use store_return as output type for now --- ir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2