1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-03 12:55:56 +00:00

Reorder for better error messages

git-svn-id: svn://svn.cc65.org/cc65/trunk@2427 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-08-30 12:29:28 +00:00
parent 14fc5c1073
commit 314b61f97a

View File

@ -471,15 +471,15 @@ void NewFunc (SymEntry* Func)
/* Generate the exit code */
g_leave ();
/* Eat the closing brace */
ConsumeRCurly ();
/* Emit references to imports/exports */
EmitExternals ();
/* Leave the lexical level */
LeaveFunctionLevel ();
/* Eat the closing brace */
ConsumeRCurly ();
/* Switch back to the old segments */
PopSegments ();