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
a5ce4184
Commit
a5ce4184
authored
Jul 11, 2007
by
Michael Beck
Browse files
moved the ip_view_state to firm_types.h
[r15037]
parent
0c895460
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/libfirm/firm_types.h
View file @
a5ce4184
...
...
@@ -72,4 +72,20 @@ typedef void irg_reg_walk_func(ir_region *, void *);
typedef
struct
ir_settings_arch_dep_t
ir_settings_arch_dep_t
;
typedef
struct
ir_settings_if_conv_t
ir_settings_if_conv_t
;
/* states */
/** The state of the interprocedural view.
*
* This value indicates the state of the interprocedural view.
*/
typedef
enum
{
ip_view_no
,
/**< The interprocedural view is not constructed. There are no
view specific nodes (EndReg, Filter, Break ...) in any graph. */
ip_view_valid
,
/**< The interprocedural view is valid. */
ip_view_invalid
/**< The interprocedural view is invalid. Specific nodes are
all still in the representation, but the graph is no more complete. */
}
ip_view_state
;
#endif
include/libfirm/ircgcons.h
View file @
a5ce4184
...
...
@@ -30,18 +30,6 @@
#include "firm_types.h"
/** The state of the interprocedural view.
*
* This value indicates the state of the interprocedural view.
*/
typedef
enum
{
ip_view_no
,
/**< The interprocedural view is not constructed. There are no
view specific nodes (EndReg, Filter, Break ...) in any graph. */
ip_view_valid
,
/**< The interprocedural view is valid. */
ip_view_invalid
/**< The interprocedural view is invalid. Specific nodes are
all still in the representation, but the graph is no more complete. */
}
ip_view_state
;
/** Return the current state of the interprocedural view. */
ip_view_state
get_irp_ip_view_state
(
void
);
/** Set the state of the interprocedural view to invalid. */
...
...
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