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
c300b600
Commit
c300b600
authored
May 23, 2011
by
Matthias Braun
Browse files
compiler library entities should be visibility_external
parent
b152c943
Changes
2
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_intrinsics.c
View file @
c300b600
...
...
@@ -424,7 +424,7 @@ static ir_entity *create_compiler_lib_entity(const char *name, ir_type *type)
id
=
id_mangle3
(
"__"
,
id
,
""
);
}
entity
=
new_entity
(
glob
,
id
,
type
);
set_entity_visibility
(
entity
,
ir_visibility_
loc
al
);
set_entity_visibility
(
entity
,
ir_visibility_
extern
al
);
set_entity_ld_ident
(
entity
,
id
);
return
entity
;
}
...
...
ir/lower/lower_dw.c
View file @
c300b600
...
...
@@ -2721,5 +2721,6 @@ ir_entity *def_create_intrinsic_fkt(ir_type *method, const ir_op *op,
ent
=
new_entity
(
get_glob_type
(),
id
,
method
);
set_entity_ld_ident
(
ent
,
get_entity_ident
(
ent
));
set_entity_visibility
(
ent
,
ir_visibility_external
);
return
ent
;
}
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