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
f549051e
Commit
f549051e
authored
Sep 15, 2007
by
Matthias Braun
Browse files
forgot to comitt 2 files
[r15818]
parent
5010492f
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/libfirm/irmode.h
View file @
f549051e
...
...
@@ -262,6 +262,13 @@ tarval *get_mode_one(ir_mode *mode);
*/
tarval
*
get_mode_minus_one
(
ir_mode
*
mode
);
/**
* Returns the value where all bits are One, represented in this mode.
*
* All One is defined only for modes integer, reference and boolean modes
*/
tarval
*
get_mode_all_one
(
ir_mode
*
mode
);
/**
* Returns the positive infinite value of a mode.
*
...
...
include/libfirm/tv.h
View file @
f549051e
...
...
@@ -294,6 +294,10 @@ tarval *get_tarval_one(ir_mode *mode);
* Returns tarval bad for unsigned modes */
tarval
*
get_tarval_minus_one
(
ir_mode
*
mode
);
/** returns the value where all bits are 1 of a given mode.
* returns tarval_bad for float modes */
tarval
*
get_tarval_all_one
(
ir_mode
*
mode
);
/** Return quite nan for float_number modes. */
tarval
*
get_tarval_nan
(
ir_mode
*
mode
);
...
...
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