Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
64252961
Commit
64252961
authored
Dec 01, 2012
by
Christoph Mallon
Browse files
cleanup: Fix typos in comments.
parent
937cf656
Changes
2
Hide whitespace changes
Inline
Side-by-side
ir/ana/irscc.c
View file @
64252961
...
...
@@ -360,7 +360,7 @@ static inline void finish_scc(void)
}
/**
* Check we
a
ther a given node represents the outer
most Start
* Check w
h
ether a given node represents the outermost Start
* block. In intra-procedural view this is the start block of the
* current graph, in interprocedural view it is the start block
* of the outer most graph.
...
...
ir/ir/irgraph.c
View file @
64252961
...
...
@@ -557,10 +557,8 @@ int node_is_in_irgs_storage(const ir_graph *irg, const ir_node *n)
{
struct
_obstack_chunk
*
p
;
/*
* checks weather the ir_node pointer is on the obstack.
* A more sophisticated check would test the "whole" ir_node
*/
/* Check whether the ir_node pointer is on the obstack.
* A more sophisticated check would test the "whole" ir_node. */
for
(
p
=
irg
->
obst
->
chunk
;
p
;
p
=
p
->
prev
)
{
if
(((
char
*
)
p
->
contents
<=
(
char
*
)
n
)
&&
((
char
*
)
n
<
(
char
*
)
p
->
limit
))
return
1
;
...
...
Write
Preview
Supports
Markdown
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