From 095bd4f24cdb5c1e350d9e2929619f54c7fa78d8 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Tue, 24 Jul 2007 15:43:26 +0000 Subject: [PATCH] indentation fixed [r15317] --- include/libfirm/iropt.h | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/include/libfirm/iropt.h b/include/libfirm/iropt.h index 4ca8ceb8a..62889a92b 100644 --- a/include/libfirm/iropt.h +++ b/include/libfirm/iropt.h @@ -53,26 +53,26 @@ * of floating point accuracy and correctness. Explicit rounding is disabled. */ typedef enum _fp_model_t { - fp_explicit_rounding = 1, /**< Explicit rounding at assignments, typecasts, return - and function calls. Conv nodes may NOT be removed, even - if they look useless. */ - fp_strict_algebraic = 2, /**< Strict adherence to non-associative and non-distributive - algebra unless the same result is guaranteed. */ - fp_contradictions = 4, /**< FP contradictions are enabled. Only for backend. */ - fp_strict_eval_order = 8, /**< FP instructions must be strict evaluated in given order. */ - fp_exceptions = 16, /**< FP exceptions are supported. No reordering that changes - the exception flow are allowed. Backends must generate - synchronized exception code. */ - fp_environment_access = 32, /**< FPU environment can be accessed. Even Constant folding - cannot be done. */ + fp_explicit_rounding = 1, /**< Explicit rounding at assignments, typecasts, return + and function calls. Conv nodes may NOT be removed, even + if they look useless. */ + fp_strict_algebraic = 2, /**< Strict adherence to non-associative and non-distributive + algebra unless the same result is guaranteed. */ + fp_contradictions = 4, /**< FP contradictions are enabled. Only for backend. */ + fp_strict_eval_order = 8, /**< FP instructions must be strict evaluated in given order. */ + fp_exceptions = 16, /**< FP exceptions are supported. No reordering that changes + the exception flow are allowed. Backends must generate + synchronized exception code. */ + fp_environment_access = 32, /**< FPU environment can be accessed. Even Constant folding + cannot be done. */ - /** Precise floating point model. Default. */ - fp_model_precise = fp_explicit_rounding|fp_strict_algebraic|fp_contradictions, - /** Strict floating point model. */ - fp_model_strict = fp_explicit_rounding|fp_strict_algebraic|fp_strict_eval_order| - fp_exceptions|fp_environment_access, - /** Fast floating point model. */ - fp_model_fast = fp_contradictions, + /** Precise floating point model. Default. */ + fp_model_precise = fp_explicit_rounding|fp_strict_algebraic|fp_contradictions, + /** Strict floating point model. */ + fp_model_strict = fp_explicit_rounding|fp_strict_algebraic|fp_strict_eval_order| + fp_exceptions|fp_environment_access, + /** Fast floating point model. */ + fp_model_fast = fp_contradictions, } fp_model_t; /** If the expression referenced can be evaluated statically -- 2.20.1