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
fa2d765a
Commit
fa2d765a
authored
Mar 11, 2002
by
Douglas B Rupp
Committed by
Richard Kenner
Mar 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* toplev.c (vms_fopen): Remove, not needed.
From-SVN: r50584
parent
6f1fd286
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
23 deletions
+2
-23
gcc/ChangeLog
+2
-0
gcc/toplev.c
+0
-23
No files found.
gcc/ChangeLog
View file @
fa2d765a
2002-03-11 Douglas B Rupp <rupp@gnat.com>
2002-03-11 Douglas B Rupp <rupp@gnat.com>
* toplev.c (vms_fopen): Remove, not needed.
* vmsdbgout.c (lookup_filename): Adjust creation date for GMT.
* vmsdbgout.c (lookup_filename): Adjust creation date for GMT.
* config/alpha/xm-vms.h (__UNIX_FWRITE): Define.
* config/alpha/xm-vms.h (__UNIX_FWRITE): Define.
...
...
gcc/toplev.c
View file @
fa2d765a
...
@@ -92,29 +92,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
...
@@ -92,29 +92,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#include "halfpic.h"
#include "halfpic.h"
#endif
#endif
#ifdef VMS
/* The extra parameters substantially improve the I/O performance. */
static
FILE
*
vms_fopen
(
fname
,
type
)
char
*
fname
;
char
*
type
;
{
/* The <stdio.h> in the gcc-vms-1.42 distribution prototypes fopen with two
fixed arguments, which matches ANSI's specification but not VAXCRTL's
pre-ANSI implementation. This hack circumvents the mismatch problem. */
FILE
*
(
*
vmslib_fopen
)()
=
(
FILE
*
(
*
)())
fopen
;
if
(
*
type
==
'w'
)
return
(
*
vmslib_fopen
)
(
fname
,
type
,
"mbc=32"
,
"deq=64"
,
"fop=tef"
,
"shr=nil"
);
else
return
(
*
vmslib_fopen
)
(
fname
,
type
,
"mbc=32"
);
}
#define fopen vms_fopen
#endif
/* VMS */
/* Carry information from ASM_DECLARE_OBJECT_NAME
/* Carry information from ASM_DECLARE_OBJECT_NAME
to ASM_FINISH_DECLARE_OBJECT. */
to ASM_FINISH_DECLARE_OBJECT. */
...
...
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