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
c5afbb49
Commit
c5afbb49
authored
27 years ago
by
Jeff Law
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgot to commit these...
From-SVN: r17555
parent
f266c82f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
gcc/genattrtab.c
+3
-0
gcc/rtl.c
+6
-0
No files found.
gcc/genattrtab.c
View file @
c5afbb49
...
...
@@ -353,6 +353,9 @@ static char *alternative_name;
int
reload_completed
=
0
;
/* Similarly since PRESERVE_DEATH_INFO_REGNO_P might reference "optimize". */
int
optimize
=
0
;
/* Simplify an expression. Only call the routine if there is something to
simplify. */
#define SIMPLIFY_TEST_EXP(EXP,INSN_CODE,INSN_INDEX) \
...
...
This diff is collapsed.
Click to expand it.
gcc/rtl.c
View file @
c5afbb49
...
...
@@ -768,9 +768,15 @@ read_rtx (infile)
#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
tmp_wide
=
atol
(
tmp_char
);
#else
#ifdef HAVE_ATOLL
tmp_wide
=
atoll
(
tmp_char
);
#else
#ifdef HAVE_ATOQ
tmp_wide
=
atoq
(
tmp_char
);
#endif
#endif
#endif
#endif
XWINT
(
return_rtx
,
i
)
=
tmp_wide
;
break
;
...
...
This diff is collapsed.
Click to expand it.
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