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
a99c3d70
Commit
a99c3d70
authored
Feb 26, 2015
by
Sebastian Pop
Committed by
Sebastian Pop
Feb 26, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improve FSM jump thread dump
From-SVN: r221021
parent
a5ddeace
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+5
-0
gcc/tree-ssa-threadupdate.c
+3
-0
No files found.
gcc/ChangeLog
View file @
a99c3d70
2015-02-26 Sebastian Pop <s.pop@samsung.com>
* tree-ssa-threadupdate.c (dump_jump_thread_path): Print all edges
of an EDGE_FSM_THREAD.
2015-02-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
* config/rs6000/htm.md (tcheck): Fix assembly encoding.
...
...
gcc/tree-ssa-threadupdate.c
View file @
a99c3d70
...
...
@@ -197,6 +197,9 @@ dump_jump_thread_path (FILE *dump_file, vec<jump_thread_edge *> path,
if
(
path
[
i
]
->
type
==
EDGE_NO_COPY_SRC_BLOCK
)
fprintf
(
dump_file
,
" (%d, %d) nocopy;"
,
path
[
i
]
->
e
->
src
->
index
,
path
[
i
]
->
e
->
dest
->
index
);
if
(
path
[
0
]
->
type
==
EDGE_FSM_THREAD
)
fprintf
(
dump_file
,
" (%d, %d) "
,
path
[
i
]
->
e
->
src
->
index
,
path
[
i
]
->
e
->
dest
->
index
);
}
fputc
(
'\n'
,
dump_file
);
}
...
...
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