From: Mikko Rasa Date: Sat, 16 Jun 2018 16:38:11 +0000 (+0300) Subject: Reorder functions in dependency order X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=e9d5d1945f110d5307036af0d4b3f0c3ebfe3d2a;hp=e9d5d1945f110d5307036af0d4b3f0c3ebfe3d2a Reorder functions in dependency order Otherwise the inliner might inline a function to a point before its original definition. This can break references to other functions declared after the inlining point, causing the unused function eliminator to eventually remove them. ---