Commit 90835097 by Richard Kenner

(check_newline): Avoid unreachable statement when HANDLE_SYSV_PRAGMA

defined.

From-SVN: r7092
parent a0fbc3a9
...@@ -398,11 +398,12 @@ check_newline () ...@@ -398,11 +398,12 @@ check_newline ()
{ {
#ifdef HANDLE_SYSV_PRAGMA #ifdef HANDLE_SYSV_PRAGMA
return handle_sysv_pragma (finput, c); return handle_sysv_pragma (finput, c);
#endif /* HANDLE_SYSV_PRAGMA */ #else /* !HANDLE_SYSV_PRAGMA */
#ifdef HANDLE_PRAGMA #ifdef HANDLE_PRAGMA
HANDLE_PRAGMA (finput); HANDLE_PRAGMA (finput);
#endif /* HANDLE_PRAGMA */ #endif /* HANDLE_PRAGMA */
goto skipline; goto skipline;
#endif /* !HANDLE_SYSV_PRAGMA */
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment