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
dcf6e674
Commit
dcf6e674
authored
Aug 11, 2000
by
Richard Henderson
Committed by
Richard Henderson
Aug 11, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/ia64/ia64.h (PROMOTE_MODE): Only extend to SImode.
From-SVN: r35646
parent
85804ec6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
gcc/ChangeLog
+4
-0
gcc/config/ia64/ia64.h
+2
-5
No files found.
gcc/ChangeLog
View file @
dcf6e674
2000-08-11 Richard Henderson <rth@cygnus.com>
* config/ia64/ia64.h (PROMOTE_MODE): Only extend to SImode.
2000-08-11 Mark Elbrecht <snowball3@bigfoot.com>
* gcc.texi (The Configuration File): Document
...
...
gcc/config/ia64/ia64.h
View file @
dcf6e674
...
...
@@ -300,15 +300,12 @@ extern const char *ia64_fixed_range_string;
/* A macro to update MODE and UNSIGNEDP when an object whose type is TYPE and
which has the specified mode and signedness is to be stored in a register.
This macro is only called when TYPE is a scalar type. */
/* ??? Maybe sign-extend 32 bit values like the alpha? Or maybe zero-extend
because we only have zero-extending loads? */
#define PROMOTE_MODE(MODE,UNSIGNEDP,TYPE) \
do \
{ \
if (GET_MODE_CLASS (MODE) == MODE_INT \
&& GET_MODE_SIZE (MODE) <
UNITS_PER_WORD)
\
(MODE) =
D
Imode; \
&& GET_MODE_SIZE (MODE) <
4)
\
(MODE) =
S
Imode; \
} \
while (0)
...
...
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