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
fffd40dc
Commit
fffd40dc
authored
Jul 29, 2008
by
Michael Beck
Browse files
fixed new type_or_ent type handling
[r20756]
parent
a0b404e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/debug/debugger.c
View file @
fffd40dc
...
...
@@ -814,11 +814,11 @@ static ir_entity *find_entity_name(const char *name) {
/**
* Search methods for a name.
*/
static
void
show_by_name
(
type_or_ent
*
tore
,
void
*
env
)
{
static
void
show_by_name
(
type_or_ent
tore
,
void
*
env
)
{
ident
*
id
=
(
ident
*
)
env
;
if
(
is_entity
(
tore
))
{
ir_entity
*
ent
=
(
ir_entity
*
)
tore
;
if
(
is_entity
(
tore
.
ent
))
{
ir_entity
*
ent
=
tore
.
ent
;
if
(
is_method_entity
(
ent
))
{
if
(
get_entity_ident
(
ent
)
==
id
)
{
...
...
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