Commit 84690a97 by Bruce Korb Committed by Bruce Korb

no preprocessing inside string literal

From-SVN: r43604
parent aaa2e8ef
2001-06-26 Bruce Korb <bkorb@gnu.org>
* gcc/fixinc/fixincl.c(initialize): In very strict ANSI, you cannot
use preprocessing directives inside a string literal. Fixed.
2001-06-26 Jim Wilson <wilson@redhat.com>
* doc/tm.texi (MAX_LONG_DOUBLE_TYPE_SIZE, INTEL_EXTENDED_IEEE_FORMAT):
......
......@@ -220,12 +220,14 @@ initialize ( argc, argv )
char** argv;
{
static const char var_not_found[] =
#ifndef __STDC__
"fixincl ERROR: %s environment variable not defined\n"
#else
"fixincl ERROR: %s environment variable not defined\n"
#ifdef __STDC__
"each of these must be defined:\n"
#define _ENV_(v,m,n,t) "\t" n " - " t "\n"
ENV_TABLE
#undef _ENV_
# define _ENV_(v,m,n,t) "\t" n " - " t "\n"
ENV_TABLE
# undef _ENV_
#endif
;
......
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