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
3943e756
Commit
3943e756
authored
Jan 21, 2001
by
Michael Sokolov
Committed by
Michael Sokolov
Jan 21, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cppinit.c (INO_T_EQ): Don't use #elif, fix formatting.
From-SVN: r39161
parent
b3e1e64f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
gcc/ChangeLog
+4
-0
gcc/cppinit.c
+6
-4
No files found.
gcc/ChangeLog
View file @
3943e756
2001-01-20 Michael Sokolov <msokolov@ivan.Harhan.ORG>
* cppinit.c (INO_T_EQ): Don't use #elif, fix formatting.
2001-01-20 Michael Sokolov <msokolov@ivan.Harhan.ORG>
* aclocal.m4 (gcc_AC_FUNC_STRSTR): New macro.
* configure.in (gcc_AC_FUNC_STRSTR): Add invokation.
* configure, config.in: Regenerate.
...
...
gcc/cppinit.c
View file @
3943e756
...
...
@@ -40,11 +40,13 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
Cygwin's emulation can generate non-unique inodes, so don't use it.
VMS has non-numeric inodes. */
#ifdef VMS
#define INO_T_EQ(a, b) (!memcmp (&(a), &(b), sizeof (a)))
#elif (defined _WIN32 && ! defined (_UWIN)) || defined __MSDOS__
#define INO_T_EQ(a, b) 0
# define INO_T_EQ(a, b) (!memcmp (&(a), &(b), sizeof (a)))
#else
#define INO_T_EQ(a, b) ((a) == (b))
# if (defined _WIN32 && ! defined (_UWIN)) || defined __MSDOS__
# define INO_T_EQ(a, b) 0
# else
# define INO_T_EQ(a, b) ((a) == (b))
# endif
#endif
/* Internal structures and prototypes. */
...
...
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