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
bc69bfac
Commit
bc69bfac
authored
Mar 16, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(global_symbolic_reference_mentioned_p): Recurse only
if GET_CODE (op) == CONST. From-SVN: r6796
parent
65e8fe02
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
gcc/config/ns32k/ns32k.c
+9
-2
No files found.
gcc/config/ns32k/ns32k.c
View file @
bc69bfac
...
@@ -406,8 +406,15 @@ global_symbolic_reference_mentioned_p (op)
...
@@ -406,8 +406,15 @@ global_symbolic_reference_mentioned_p (op)
register
char
*
fmt
;
register
char
*
fmt
;
register
int
i
;
register
int
i
;
if
(
GET_CODE
(
op
)
==
SYMBOL_REF
&&
!
SYMBOL_REF_FLAG
(
op
))
if
(
GET_CODE
(
op
)
==
SYMBOL_REF
)
return
1
;
{
if
(
!
SYMBOL_REF_FLAG
(
op
))
return
1
;
else
return
0
;
}
else
if
(
GET_CODE
(
op
)
!=
CONST
)
return
0
;
fmt
=
GET_RTX_FORMAT
(
GET_CODE
(
op
));
fmt
=
GET_RTX_FORMAT
(
GET_CODE
(
op
));
for
(
i
=
GET_RTX_LENGTH
(
GET_CODE
(
op
))
-
1
;
i
>=
0
;
i
--
)
for
(
i
=
GET_RTX_LENGTH
(
GET_CODE
(
op
))
-
1
;
i
>=
0
;
i
--
)
...
...
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