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
7179b6db
Commit
7179b6db
authored
Mar 06, 2004
by
Richard Henderson
Committed by
Richard Henderson
Mar 06, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/alpha/alpha.c (alpha_in_small_data_p): False for functions.
From-SVN: r79054
parent
eff3c926
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+4
-0
gcc/config/alpha/alpha.c
+4
-0
No files found.
gcc/ChangeLog
View file @
7179b6db
2004-03-06 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.c (alpha_in_small_data_p): False for functions.
2004-03-06 Kazu Hirata <kazu@cs.umass.edu>
* config/ns32k/ns32k-protos.h: Add a prototype for
...
...
gcc/config/alpha/alpha.c
View file @
7179b6db
...
...
@@ -1595,6 +1595,10 @@ alpha_in_small_data_p (tree exp)
if
(
TREE_CODE
(
exp
)
==
STRING_CST
)
return
false
;
/* Functions are never in the small data area. Duh. */
if
(
TREE_CODE
(
exp
)
==
FUNCTION_DECL
)
return
false
;
if
(
TREE_CODE
(
exp
)
==
VAR_DECL
&&
DECL_SECTION_NAME
(
exp
))
{
const
char
*
section
=
TREE_STRING_POINTER
(
DECL_SECTION_NAME
(
exp
));
...
...
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