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
9164d207
Commit
9164d207
authored
Sep 19, 2008
by
Matthias Braun
Browse files
fix optimize build
[r22129]
parent
4b01bfe0
Changes
2
Show whitespace changes
Inline
Side-by-side
include/libfirm/irgraph.h
View file @
9164d207
...
...
@@ -511,7 +511,6 @@ void set_irg_block_visited(ir_graph *irg, unsigned long i);
* block_visited flags. If NDEBUG is not defined, then the compiler will abort
* if 2 parties try to use the flags.
*/
#ifndef NDEBUG
enum
ir_resources_enum_t
{
IR_RESOURCE_BLOCK_VISITED
=
1
<<
0
,
IR_RESOURCE_BLOCK_MARK
=
1
<<
1
,
...
...
@@ -521,6 +520,7 @@ enum ir_resources_enum_t {
};
typedef
unsigned
ir_resources_t
;
#ifndef NDEBUG
void
ir_reserve_resources
(
ir_graph
*
irg
,
ir_resources_t
resources
);
void
ir_free_resources
(
ir_graph
*
irg
,
ir_resources_t
resources
);
ir_resources_t
ir_resources_reserved
(
const
ir_graph
*
irg
);
...
...
include/libfirm/typerep.h
View file @
9164d207
...
...
@@ -1387,10 +1387,7 @@ unsigned get_type_size_bytes(const ir_type *tp);
*/
void
set_type_size_bytes
(
ir_type
*
tp
,
unsigned
size
);
/** Returns the alignment of a type in bytes.
*
* Returns -1 if the alignment is NOT
* a byte size, i.e. not dividable by 8. Calls get_type_alignment_bits(). */
/** Returns the alignment of a type in bytes. */
unsigned
get_type_alignment_bytes
(
ir_type
*
tp
);
/** Returns the alignment of a type in bits.
...
...
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