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
3220116f
Commit
3220116f
authored
Feb 10, 2001
by
Anthony Green
Committed by
Anthony Green
Feb 10, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc and warning fixes.
From-SVN: r39580
parent
36b8ffbe
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletions
+16
-1
gcc/ChangeLog
+7
-0
gcc/c-common.c
+1
-1
gcc/cpp.texi
+8
-0
No files found.
gcc/ChangeLog
View file @
3220116f
2001-02-10 Anthony Green <green@redhat.com>
* cpp.texi (Standard Predefined): Add documentation for
__OPTIMIZE_SIZE__.
* c-common.c (combine_strings): Improve warning message.
2001-02-10 Geoffrey Keating <geoffk@redhat.com>
* config/rs6000/sysv4.h (LINK_TARGET_SPEC): Use two dashes for
...
...
gcc/c-common.c
View file @
3220116f
...
...
@@ -466,7 +466,7 @@ combine_strings (strings)
nchars
=
wide_flag
?
length
/
wchar_bytes
:
length
;
if
(
pedantic
&&
nchars
-
1
>
nchars_max
&&
c_language
==
clk_c
)
pedwarn
(
"string length `%d' is greater than the
minimum length `%d' ISO C%d is
required to support"
,
pedwarn
(
"string length `%d' is greater than the
length `%d' ISO C%d compilers are
required to support"
,
nchars
-
1
,
nchars_max
,
flag_isoc99
?
99
:
89
);
/* Create the array type for the string constant.
...
...
gcc/cpp.texi
View file @
3220116f
...
...
@@ -1191,6 +1191,14 @@ library functions. You should not refer to or test the definition of
this macro unless you make very sure that programs will execute with the
same effect regardless.
@item __OPTIMIZE_SIZE__
@findex __OPTIMIZE_SIZE__
GNU CC defines this macro when optimizing for size with @samp{-Os}. It
causes certain GNU header files to define alternative macro definitions
for some system library functions. You should not refer to or test the
definition of this macro unless you make very sure that programs will
execute with the same effect regardless.
@item __CHAR_UNSIGNED__
@findex __CHAR_UNSIGNED__
GNU C defines this macro if and only if the data type @code{char} is
...
...
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