From: Wolfgang (Blub) Bumiller Date: Tue, 21 Aug 2012 14:08:23 +0000 (+0200) Subject: Do not generate an OFS_RETURN variable, the IR doesn't need to know it as such X-Git-Tag: 0.1-rc1~114 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9eb9c99e7221736a691ce90af6db682e0fd6c031;p=xonotic%2Fgmqcc.git Do not generate an OFS_RETURN variable, the IR doesn't need to know it as such --- diff --git a/ir.c b/ir.c index 01e297f..80d53ed 100644 --- a/ir.c +++ b/ir.c @@ -172,11 +172,6 @@ ir_builder* ir_builder_new(const char *modulename) return NULL; } - /* globals which always exist */ - - /* for now we give it a vector size */ - ir_builder_create_global(self, "OFS_RETURN", TYPE_VARIANT); - return self; }