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
bfe7af89
Commit
bfe7af89
authored
Nov 29, 2012
by
Marek Polacek
Committed by
Marek Polacek
Nov 29, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve debug message.
From-SVN: r193922
parent
d45a0b2b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ChangeLog
+4
-0
gcc/cprop.c
+5
-3
No files found.
gcc/ChangeLog
View file @
bfe7af89
2012
-
11
-
29
Marek
Polacek
<
polacek
@redhat
.
com
>
*
cprop
.
c
(
bypass_block
)
:
Improve
debug
message
.
2012
-
11
-
29
Oleg
Raikhman
<
oleg
@adapteva
.
com
>
*
config
/
epiphany
/
epiphany
.
h
(
FIXED_REGISTERS
,
CALL_USED_REGISTERS
)
:
gcc/cprop.c
View file @
bfe7af89
/* Global constant/copy propagation for RTL.
Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
2006, 2007, 2008, 2009, 2010, 2011
, 2012
Free Software Foundation, Inc.
This file is part of GCC.
...
...
@@ -1632,8 +1632,10 @@ bypass_block (basic_block bb, rtx setcc, rtx jump)
"in jump_insn %d equals constant "
,
regno
,
INSN_UID
(
jump
));
print_rtl
(
dump_file
,
set
->
src
);
fprintf
(
dump_file
,
"
\n
Bypass edge from %d->%d to %d
\n
"
,
e
->
src
->
index
,
old_dest
->
index
,
dest
->
index
);
fprintf
(
dump_file
,
"
\n\t
when BB %d is entered from "
"BB %d. Redirect edge %d->%d to %d.
\n
"
,
old_dest
->
index
,
e
->
src
->
index
,
e
->
src
->
index
,
old_dest
->
index
,
dest
->
index
);
}
change
=
1
;
removed_p
=
1
;
...
...
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