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
a8b94b40
Commit
a8b94b40
authored
Feb 16, 2001
by
Richard Kenner
Committed by
Richard Kenner
Feb 15, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* flow.c (tidy_fallthru_edge): Never end block on line number NOTE.
From-SVN: r39739
parent
d64236b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/ChangeLog
+2
-0
gcc/flow.c
+8
-1
No files found.
gcc/ChangeLog
View file @
a8b94b40
Thu Feb 15 21:30:26 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* flow.c (tidy_fallthru_edge): Never end block on line number NOTE.
* function.c (assign_parms): Set RTX_UNCHANGING_P in pseudo when we
do in memory.
...
...
gcc/flow.c
View file @
a8b94b40
...
...
@@ -2814,7 +2814,14 @@ tidy_fallthru_edge (e, b, c)
NOTE_SOURCE_FILE
(
q
)
=
0
;
}
else
q
=
PREV_INSN
(
q
);
{
q
=
PREV_INSN
(
q
);
/* We don't want a block to end on a line-number note since that has
the potential of changing the code between -g and not -g. */
while
(
GET_CODE
(
q
)
==
NOTE
&&
NOTE_LINE_NUMBER
(
q
)
>=
0
)
q
=
PREV_INSN
(
q
);
}
b
->
end
=
q
;
}
...
...
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