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
c0d18c6c
Commit
c0d18c6c
authored
Jul 21, 2013
by
Mike Stump
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos.
From-SVN: r201108
parent
9b110be2
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
gcc/tree-eh.c
+1
-1
gcc/tree-ssa-dce.c
+1
-1
gcc/tree-ssa-loop-ivcanon.c
+2
-2
gcc/tree-ssa-reassoc.c
+1
-1
gcc/tree-ssa-structalias.c
+2
-2
gcc/tree-ssa-tail-merge.c
+1
-1
gcc/tree-ssa-threadedge.c
+1
-1
No files found.
gcc/tree-eh.c
View file @
c0d18c6c
...
...
@@ -4383,7 +4383,7 @@ cleanup_all_empty_eh (void)
2) MUST_NOT_THROW regions that became dead because of 1) are optimized out
3) Info about regions that are containing instructions, and regions
reachable via local EH edges is collected
4) Eh tree is pruned for regions no longer nec
ce
sary.
4) Eh tree is pruned for regions no longer nec
es
sary.
TODO: Push MUST_NOT_THROW regions to the root of the EH tree.
Unify those that have the same failure decl and locus.
...
...
gcc/tree-ssa-dce.c
View file @
c0d18c6c
...
...
@@ -1110,7 +1110,7 @@ forward_edge_to_pdom (edge e, basic_block post_dom_bb)
e2
=
redirect_edge_and_branch
(
e
,
post_dom_bb
);
cfg_altered
=
true
;
/* If edge was already around, no updating is nec
ce
sary. */
/* If edge was already around, no updating is nec
es
sary. */
if
(
e2
!=
e
)
return
e2
;
...
...
gcc/tree-ssa-loop-ivcanon.c
View file @
c0d18c6c
...
...
@@ -376,7 +376,7 @@ tree_estimate_loop_size (struct loop *loop, edge exit, edge edge_to_cancel, stru
is dead and that some instructions will be eliminated after
peeling.
Loop body is likely going to simplify futher, this is difficult
Loop body is likely going to simplify fu
r
ther, this is difficult
to guess, we just decrease the result by 1/3. */
static
unsigned
HOST_WIDE_INT
...
...
@@ -782,7 +782,7 @@ try_unroll_loop_completely (struct loop *loop,
storing or cumulating the return value. */
else
if
(
size
.
num_pure_calls_on_hot_path
/* One IV increment, one test, one ivtmp store
and one useful
l
stmt. That is about minimal loop
and one useful stmt. That is about minimal loop
doing pure call. */
&&
(
size
.
non_call_stmts_on_hot_path
<=
3
+
size
.
num_pure_calls_on_hot_path
))
...
...
gcc/tree-ssa-reassoc.c
View file @
c0d18c6c
...
...
@@ -1386,7 +1386,7 @@ undistribute_ops_list (enum tree_code opcode,
}
}
/* Process the (operand, code) pairs in order of most occurence. */
/* Process the (operand, code) pairs in order of most occur
r
ence. */
candidates2
=
sbitmap_alloc
(
length
);
while
(
!
cvec
.
is_empty
())
{
...
...
gcc/tree-ssa-structalias.c
View file @
c0d18c6c
...
...
@@ -4457,7 +4457,7 @@ find_func_aliases_for_builtin_call (gimple t)
}
/* printf-style functions may have hooks to set pointers to
point to somewhere into the generated string. Leave them
for a later ex
c
ercise... */
for a later exercise... */
default:
/* Fallthru to general call handling. */
;
}
...
...
@@ -5015,7 +5015,7 @@ find_func_clobbers (gimple origt)
return
;
/* printf-style functions may have hooks to set pointers to
point to somewhere into the generated string. Leave them
for a later ex
c
ercise... */
for a later exercise... */
default:
/* Fallthru to general call handling. */
;
}
...
...
gcc/tree-ssa-tail-merge.c
View file @
c0d18c6c
...
...
@@ -1615,7 +1615,7 @@ tail_merge_optimize (unsigned int todo)
||
max_iterations
==
0
/* We try to be conservative with respect to loop structure, since:
- the cases where tail-merging could both affect loop structure and be
ben
i
ficial are rare,
ben
e
ficial are rare,
- it prevents us from having to fixup the loops using
loops_state_set (LOOPS_NEED_FIXUP), and
- keeping loop structure may allow us to simplify the pass.
...
...
gcc/tree-ssa-threadedge.c
View file @
c0d18c6c
...
...
@@ -585,7 +585,7 @@ cond_arg_set_in_bb (edge e, basic_block bb)
gimple
last
=
last_stmt
(
e
->
dest
);
/* E->dest does not have to end with a control transferring
instruction. This can occur
r
when we try to extend a jump
instruction. This can occur when we try to extend a jump
threading opportunity deeper into the CFG. In that case
it is safe for this check to return false. */
if
(
!
last
)
...
...
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