Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
f0a6ffa7
Commit
f0a6ffa7
authored
Sep 02, 2015
by
Christoph Mallon
Browse files
cleanup: Correct typo: s/accross/across/.
parent
510c8397
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/libfirm/typerep.h
View file @
f0a6ffa7
...
...
@@ -86,7 +86,7 @@ typedef enum {
*/
ir_visibility_external
,
/**
* The entity is visible across compilation units, but not ac
c
ross modules.
* The entity is visible across compilation units, but not across modules.
* This is equivalent to __attribute__((visibility("hidden"))) in gcc.
*/
ir_visibility_external_private
,
...
...
ir/be/sparc/sparc_emitter.c
View file @
f0a6ffa7
...
...
@@ -511,7 +511,7 @@ static ir_node *pick_delay_slot_for(ir_node *node)
sched_foreach
(
succ
,
schedpoint
)
{
if
(
has_delay_slot
(
schedpoint
))
break
;
/* can't move pinned nodes ac
c
ross blocks */
/* can't move pinned nodes across blocks */
if
(
get_irn_pinned
(
schedpoint
))
continue
;
/* restore doesn't model register window switching correctly,
...
...
@@ -524,7 +524,7 @@ static ir_node *pick_delay_slot_for(ir_node *node)
if
(
!
is_legal_delay_slot_filler
(
schedpoint
))
continue
;
if
(
can_move_up_into_delayslot
(
schedpoint
,
node
))
{
/* it's fine to move the insn ac
c
ross blocks */
/* it's fine to move the insn across blocks */
return
schedpoint
;
}
else
if
(
is_sparc_Bicc
(
node
)
||
is_sparc_fbfcc
(
node
))
{
ir_node
*
proj
=
get_Block_cfgpred
(
succ
,
0
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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