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
81284a6a
Commit
81284a6a
authored
Feb 27, 1994
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(subreg_realpart_p): New function.
From-SVN: r6667
parent
340aa7f6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
gcc/emit-rtl.c
+15
-0
No files found.
gcc/emit-rtl.c
View file @
81284a6a
...
@@ -822,6 +822,21 @@ gen_imagpart (mode, x)
...
@@ -822,6 +822,21 @@ gen_imagpart (mode, x)
else
else
return
gen_highpart
(
mode
,
x
);
return
gen_highpart
(
mode
,
x
);
}
}
/* Return 1 iff X, assumed to be a SUBREG,
refers to the real part of the complex value in its containing reg.
Complex values are always stored with the real part in the first word,
regardless of WORDS_BIG_ENDIAN. */
int
subreg_realpart_p
(
x
)
rtx
x
;
{
if
(
GET_CODE
(
x
)
!=
SUBREG
)
abort
();
return
SUBREG_WORD
(
x
)
==
0
;
}
/* Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a value,
/* Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a value,
return an rtx (MEM, SUBREG, or CONST_INT) that refers to the
return an rtx (MEM, SUBREG, or CONST_INT) that refers to the
...
...
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