1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-03 01:31:55 +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 */ /* Generate the exit code */
g_leave (); g_leave ();
/* Eat the closing brace */
ConsumeRCurly ();
/* Emit references to imports/exports */ /* Emit references to imports/exports */
EmitExternals (); EmitExternals ();
/* Leave the lexical level */ /* Leave the lexical level */
LeaveFunctionLevel (); LeaveFunctionLevel ();
/* Eat the closing brace */
ConsumeRCurly ();
/* Switch back to the old segments */ /* Switch back to the old segments */
PopSegments (); PopSegments ();