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
586964a7
Commit
586964a7
authored
Jan 22, 2001
by
Andres Felipe Vargas
Committed by
Neil Booth
Jan 22, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cpp.texi: Fix typos.
From-SVN: r39186
parent
f5f5363f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/cpp.texi
+2
-2
No files found.
gcc/ChangeLog
View file @
586964a7
2001-01-22 Andres Felipe Vargas <avargas@teletulua.com.co>
* cpp.texi: Correct typos.
Mon Jan 22 13:59:09 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
Mon Jan 22 13:59:09 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* explow.c (probe_stack_range): Ensure value passed to
* explow.c (probe_stack_range): Ensure value passed to
...
...
gcc/cpp.texi
View file @
586964a7
...
@@ -1127,7 +1127,7 @@ version 1, which is now obsolete, and @samp{2} for version 2).
...
@@ -1127,7 +1127,7 @@ version 1, which is now obsolete, and @samp{2} for version 2).
@findex __GNUC_MINOR__
@findex __GNUC_MINOR__
The macro contains the minor version number of the compiler. This can
The macro contains the minor version number of the compiler. This can
be used to work around differences between different releases of the
be used to work around differences between different releases of the
compiler (for example, if GCC 2.6.
3
is known to support a feature, you
compiler (for example, if GCC 2.6.
x
is known to support a feature, you
can test for @code{__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6)}).
can test for @code{__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6)}).
@item __GNUC_PATCHLEVEL__
@item __GNUC_PATCHLEVEL__
...
@@ -1138,7 +1138,7 @@ of the compiler (for example, if GCC 2.6.2 is known to contain a bug,
...
@@ -1138,7 +1138,7 @@ of the compiler (for example, if GCC 2.6.2 is known to contain a bug,
whereas GCC 2.6.3 contains a fix, and you have code which can workaround
whereas GCC 2.6.3 contains a fix, and you have code which can workaround
the problem depending on whether the bug is fixed or not, you can test for
the problem depending on whether the bug is fixed or not, you can test for
@code{__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 6) ||
@code{__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 6) ||
(__GNUC__ == 2 && __GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ > 3)}).
(__GNUC__ == 2 && __GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ >
=
3)}).
@item __GNUG__
@item __GNUG__
@findex __GNUG__
@findex __GNUG__
...
...
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