Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
84690a97
Commit
84690a97
authored
Jun 27, 2001
by
Bruce Korb
Committed by
Bruce Korb
Jun 27, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no preprocessing inside string literal
From-SVN: r43604
parent
aaa2e8ef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
gcc/ChangeLog
+5
-0
gcc/fixinc/fixincl.c
+6
-4
No files found.
gcc/ChangeLog
View file @
84690a97
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
)
:
...
...
gcc/fixinc/fixincl.c
View file @
84690a97
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment