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
34ae233a
Commit
34ae233a
authored
Aug 29, 2015
by
Francois-Xavier Coudert
Committed by
François-Xavier Coudert
Aug 29, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* io/unix.c (min): Remove unused macro.
From-SVN: r227317
parent
107051a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
11 deletions
+4
-11
libgfortran/ChangeLog
+4
-0
libgfortran/io/unix.c
+0
-11
No files found.
libgfortran/ChangeLog
View file @
34ae233a
2015-08-29 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
* io/unix.c (min): Remove unused macro.
2015-08-28 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
2015-08-28 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR fortran/53668
PR fortran/53668
...
...
libgfortran/io/unix.c
View file @
34ae233a
...
@@ -110,17 +110,6 @@ id_from_fd (const int fd)
...
@@ -110,17 +110,6 @@ id_from_fd (const int fd)
#endif
/* __MINGW32__ */
#endif
/* __MINGW32__ */
/* min macro that evaluates its arguments only once. */
#ifdef min
#undef min
#endif
#define min(a,b) \
({ typeof (a) _a = (a); \
typeof (b) _b = (b); \
_a < _b ? _a : _b; })
/* These flags aren't defined on all targets (mingw32), so provide them
/* These flags aren't defined on all targets (mingw32), so provide them
here. */
here. */
#ifndef S_IRGRP
#ifndef S_IRGRP
...
...
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