Commit 78ab1ff4 by Georg-Johann Lay Committed by Georg-Johann Lay

rtl.h (CONST_FIXED_P): New predicate macro.

	* rtl.h (CONST_FIXED_P): New predicate macro.

From-SVN: r191388
parent fea4ea73
2012-09-17 Georg-Johann Lay <avr@gjlay.de>
* rtl.h (CONST_FIXED_P): New predicate macro.
2012-09-17 Eric Botcazou <ebotcazou@adacore.com>
* tree-cfgcleanup. (cleanup_control_expr_graph) <GIMPLE_COND>: Remove
......
......@@ -419,6 +419,9 @@ struct GTY((variable_size)) rtvec_def {
/* Predicate yielding nonzero iff X is an rtx for a constant integer. */
#define CONST_INT_P(X) (GET_CODE (X) == CONST_INT)
/* Predicate yielding nonzero iff X is an rtx for a constant fixed-point. */
#define CONST_FIXED_P(X) (GET_CODE (X) == CONST_FIXED)
/* Predicate yielding true iff X is an rtx for a double-int
or floating point constant. */
#define CONST_DOUBLE_P(X) (GET_CODE (X) == CONST_DOUBLE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment