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
5378192b
Commit
5378192b
authored
Oct 06, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(get_first_block_beg): New function.
From-SVN: r2345
parent
6204c24f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
gcc/function.c
+18
-0
No files found.
gcc/function.c
View file @
5378192b
...
...
@@ -2518,6 +2518,24 @@ get_first_nonparm_insn ()
return
get_insns
();
}
/* Return the first NOTE_INSN_BLOCK_BEG note in the function.
Crash if there is none. */
rtx
get_first_block_beg
()
{
register
rtx
searcher
;
register
rtx
insn
=
get_first_nonparm_insn
();
for
(
searcher
=
insn
;
searcher
;
searcher
=
NEXT_INSN
(
searcher
))
if
(
GET_CODE
(
searcher
)
==
NOTE
&&
NOTE_LINE_NUMBER
(
searcher
)
==
NOTE_INSN_BLOCK_BEG
)
return
searcher
;
abort
();
/* Invalid call to this function. (See comments above.) */
return
NULL_RTX
;
}
/* Return 1 if EXP returns an aggregate value, for which an address
must be passed to the function or returned by the function. */
...
...
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