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
1e8964cf
Commit
1e8964cf
authored
Sep 02, 2004
by
Dan Nicolaescu
Committed by
Dan Nicolaescu
Sep 02, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r86955
parent
26276705
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
gcc/ChangeLog
+5
-0
gcc/gengenrtl.c
+1
-3
gcc/ggc.h
+0
-3
No files found.
gcc/ChangeLog
View file @
1e8964cf
2004-09-01 Dan Nicolaescu <dann@ics.uci.edu>
* gengenrtl.c (gendef): Use rtx_alloc, don't do PUT_CODE.
* ggc.h (ggc_alloc_rtx): Delete.
2004-09-01 Roger Sayle <roger@eyesopen.com>
2004-09-01 Roger Sayle <roger@eyesopen.com>
* expmed.c (enum alg_code): Remove long unused enumeration values.
* expmed.c (enum alg_code): Remove long unused enumeration values.
...
...
gcc/gengenrtl.c
View file @
1e8964cf
...
@@ -268,10 +268,8 @@ gendef (const char *format)
...
@@ -268,10 +268,8 @@ gendef (const char *format)
the memory and initializes it. */
the memory and initializes it. */
puts
(
"{"
);
puts
(
"{"
);
puts
(
" rtx rt;"
);
puts
(
" rtx rt;"
);
puts
(
" rt =
ggc_alloc_rtx
(code);
\n
"
);
puts
(
" rt =
rtx_alloc
(code);
\n
"
);
puts
(
" memset (rt, 0, RTX_HDR_SIZE);
\n
"
);
puts
(
" PUT_CODE (rt, code);"
);
puts
(
" PUT_MODE (rt, mode);"
);
puts
(
" PUT_MODE (rt, mode);"
);
for
(
p
=
format
,
i
=
j
=
0
;
*
p
;
++
p
,
++
i
)
for
(
p
=
format
,
i
=
j
=
0
;
*
p
;
++
p
,
++
i
)
...
...
gcc/ggc.h
View file @
1e8964cf
...
@@ -245,9 +245,6 @@ extern void dump_ggc_loc_statistics (void);
...
@@ -245,9 +245,6 @@ extern void dump_ggc_loc_statistics (void);
#define GGC_NEWVAR(T, S) ((T *) ggc_alloc ((S)))
#define GGC_NEWVAR(T, S) ((T *) ggc_alloc ((S)))
#define GGC_CNEWVAR(T, S) ((T *) ggc_alloc_cleared ((S)))
#define GGC_CNEWVAR(T, S) ((T *) ggc_alloc_cleared ((S)))
#define ggc_alloc_rtx(CODE) \
((rtx) ggc_alloc_typed (gt_ggc_e_7rtx_def, RTX_SIZE (CODE)))
#define ggc_alloc_rtvec(NELT) \
#define ggc_alloc_rtvec(NELT) \
((rtvec) ggc_alloc_typed (gt_ggc_e_9rtvec_def, sizeof (struct rtvec_def) \
((rtvec) ggc_alloc_typed (gt_ggc_e_9rtvec_def, sizeof (struct rtvec_def) \
+ ((NELT) - 1) * sizeof (rtx)))
+ ((NELT) - 1) * sizeof (rtx)))
...
...
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