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
ef86d2ee
Commit
ef86d2ee
authored
Jan 02, 1998
by
Weiwen Liu
Committed by
Richard Henderson
Jan 01, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* alpha.c (vms_valid_decl_attribute_p): Move within #if OPEN_VMS.
From-SVN: r17279
parent
6c174fc0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
12 deletions
+16
-12
gcc/ChangeLog
+4
-0
gcc/config/alpha/alpha.c
+12
-12
No files found.
gcc/ChangeLog
View file @
ef86d2ee
Fri Jan 2 04:57:57 1998 Weiwen Liu <liu@hepmail.physics.yale.edu>
* alpha.c (vms_valid_decl_attribute_p): Move within #if OPEN_VMS.
Fri Jan 2 04:34:14 1998 Richard Henderson <rth@cygnus.com>
* c-decl.c (init_decl_processing): Provide proper fallback symbol
...
...
gcc/config/alpha/alpha.c
View file @
ef86d2ee
...
...
@@ -3015,6 +3015,18 @@ output_epilog (file, size)
SYMBOL_REF_FLAG
(
XEXP
(
DECL_RTL
(
current_function_decl
),
0
))
=
1
;
}
int
vms_valid_decl_attribute_p
(
decl
,
attributes
,
identifier
,
args
)
tree
decl
;
tree
attributes
;
tree
identifier
;
tree
args
;
{
if
(
is_attribute_p
(
"overlaid"
,
identifier
))
return
(
args
==
NULL_TREE
);
return
0
;
}
#else
/* !OPEN_VMS */
static
int
...
...
@@ -3048,18 +3060,6 @@ alpha_does_function_need_gp ()
return
0
;
}
int
vms_valid_decl_attribute_p
(
decl
,
attributes
,
identifier
,
args
)
tree
decl
;
tree
attributes
;
tree
identifier
;
tree
args
;
{
if
(
is_attribute_p
(
"overlaid"
,
identifier
))
return
(
args
==
NULL_TREE
);
return
0
;
}
void
output_prolog
(
file
,
size
)
FILE
*
file
;
...
...
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