Commit 80008dc7 by Richard Kenner

Formerly cpp.texi.~26~

From-SVN: r13226
parent c2f006ec
...@@ -2330,7 +2330,7 @@ when you run @code{gcc} or @code{cpp}. @xref{Invocation}. ...@@ -2330,7 +2330,7 @@ when you run @code{gcc} or @code{cpp}. @xref{Invocation}.
@findex #error @findex #error
The directive @samp{#error} causes the preprocessor to report a fatal The directive @samp{#error} causes the preprocessor to report a fatal
error. The rest of the line that follows @samp{#error} is used as the error. The rest of the line that follows @samp{#error} is used as the
error message. error message. The line must consist of complete tokens.
You would use @samp{#error} inside of a conditional that detects a You would use @samp{#error} inside of a conditional that detects a
combination of parameters which you know the program does not properly combination of parameters which you know the program does not properly
...@@ -2340,7 +2340,7 @@ properly on a Vax, you might write ...@@ -2340,7 +2340,7 @@ properly on a Vax, you might write
@smallexample @smallexample
@group @group
#ifdef __vax__ #ifdef __vax__
#error Won't work on Vaxen. See comments at get_last_object. #error "Won't work on Vaxen. See comments at get_last_object."
#endif #endif
@end group @end group
@end smallexample @end smallexample
......
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