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
75ddaef5
Commit
75ddaef5
authored
Jul 28, 2010
by
Matthias Braun
Browse files
avoid unnecessary #define in public headers
[r27837]
parent
5f901333
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/libfirm/ircons.h
View file @
75ddaef5
...
...
@@ -4176,8 +4176,6 @@ FIRM_API void add_immBlock_pred(ir_node *immblock, ir_node *jmp);
/** Finalize a Block node, when all control flows are known. */
FIRM_API
void
mature_immBlock
(
ir_node
*
block
);
#define mature_cur_block() mature_immBlock(get_cur_block());
/** Get the current value of a local variable.
*
...
...
include/libfirm/irgraph.h
View file @
75ddaef5
...
...
@@ -319,9 +319,6 @@ FIRM_API irg_phase_state get_irg_phase_state(const ir_graph *irg);
/** Sets the phase state of an IR graph. */
FIRM_API
void
set_irg_phase_state
(
ir_graph
*
irg
,
irg_phase_state
state
);
/** Sets the phase of the given IR graph to low. */
#define set_irg_phase_low(irg) set_irg_phase_state(irg, phase_low)
/** state: op_pin_state_pinned
The graph is "op_pin_state_pinned" if all nodes are associated with a basic block.
It is in state "op_pin_state_floats" if nodes are in arbitrary blocks. In state
...
...
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