Age | Commit message (Expand) | Author | Files | Lines |
2005-12-22 | tree.c (tree_fold_gcd): Use build_int_cst where appropriate. | Richard Guenther | 1 | -20/+20 |
2005-12-22 | re PR middle-end/23518 (some gcc optimizations do not take overflow into acco... | Kazu Hirata | 1 | -0/+5 |
2005-12-16 | basic-block.h, [...]: Fix comment typos. | Kazu Hirata | 1 | -2/+2 |
2005-12-06 | fold-const.c (fold_convert): Do not build and fold CONVERT_EXPR, but always u... | Richard Guenther | 1 | -3/+2 |
2005-12-01 | fold-const.c (fold_binary): Use fold_build2, not fold (build (...)). | Richard Guenther | 1 | -2/+2 |
2005-11-30 | tree.h (CASE_FLT_FN, [...]): New macros. | Volker Reichelt | 1 | -81/+56 |
2005-11-29 | fold-const.c (negate_expr): Add break after the if. | Andrew Pinski | 1 | -0/+1 |
2005-11-29 | fold-const.c (negate_expr_p): Return true for BIT_NOT_EXPR. | Andrew Pinski | 1 | -4/+8 |
2005-11-28 | re PR middle-end/20219 (Missed optimisation sin / tan --> cos) | Roger Sayle | 1 | -30/+73 |
2005-11-27 | re PR tree-optimization/24575 (-(i /10) is not foldded to i/-10) | Andrew Pinski | 1 | -0/+32 |
2005-11-26 | re PR middle-end/23669 (fold does convert (-a)/10 into a/-10 with -fno-wrapv) | Andrew Pinski | 1 | -0/+13 |
2005-11-25 | fold-const.c (negate_mathfn_p): Fix comment and add support for BUILT_IN_CBRT... | Volker Reichelt | 1 | -2/+17 |
2005-11-24 | [multiple changes] | Andrew Pinski | 1 | -0/+10 |
2005-11-24 | [multiple changes] | Andrew Pinski | 1 | -0/+7 |
2005-11-22 | re PR middle-end/23606 (fold does not fold (type)(a == b) into a == b (with t... | Andrew Pinski | 1 | -0/+6 |
2005-11-21 | fold-const.c (fold_binary): Optimize A / A to 1.0 if we don't care about NaNs... | Uros Bizjak | 1 | -0/+11 |
2005-11-19 | fold-const.c (fold_indirect_ref_1): Make sure we fold ARRAY_REFs of constant ... | Richard Guenther | 1 | -2/+8 |
2005-11-19 | re PR middle-end/23294 (fold does not fold a*C+a to a*(C+1) or a*C-a to a*(C-1)) | Richard Guenther | 1 | -133/+117 |
2005-11-18 | fold-const.c (build_range_check): Use proper type for subtraction when mergin... | Richard Kenner | 1 | -4/+16 |
2005-11-17 | re PR middle-end/24851 (f2c miscompilation) | Richard Guenther | 1 | -17/+16 |
2005-11-16 | fold-const.c (const_binop): Don't constant fold the operation if the result h... | Eric Botcazou | 1 | -0/+10 |
2005-11-02 | re PR middle-end/22429 (-1073741824 <= n && n <= 1073741823 is true where n i... | Andrew Pinski | 1 | -1/+7 |
2005-10-20 | re PR c++/24439 (ICE with invert conditional containing throw) | Richard Guenther | 1 | -3/+12 |
2005-10-18 | re PR middle-end/23522 (fold_widened_comparison bug) | Alexey Starovoytov | 1 | -3/+3 |
2005-10-07 | re PR middle-end/24227 (ICE in compare_values, at tree-vrp.c:415) | Richard Guenther | 1 | -13/+5 |
2005-09-26 | re PR middle-end/23960 (ICE in compare_values in VRP) | Kazu Hirata | 1 | -1/+1 |
2005-09-09 | re PR c++/23624 (ICE: internal compiler error: in invert_truthvalue, at fold-... | Richard Guenther | 1 | -1/+2 |
2005-08-29 | re PR middle-end/22455 (ICE tree check: expected function_decl, have type_dec... | Daniel Berlin | 1 | -7/+12 |
2005-08-24 | fold-const.c (ptr_difference_const): Use cst_and_fits_in_hwi instead of host_... | Zdenek Dvorak | 1 | -2/+2 |
2005-08-23 | re PR middle-end/23517 (can't cast between generic vector types and target su... | Paolo Bonzini | 1 | -1/+1 |
2005-08-17 | c-typeck.c (build_function_call): Call fold_buildN_initializer or fold_buildN... | James A. Morrison | 1 | -15/+47 |
2005-08-17 | fold-const.c (optimize_bit_field_compare): Remove extra fold call. | James A. Morrison | 1 | -9/+9 |
2005-08-16 | * fold-const.c (tree_expr_nonnegative_p): Regroup cases. | Volker Reichelt | 1 | -31/+20 |
2005-08-16 | * fold-const.c (fold_ternary): Simplify folding of a CALL_EXPR. | Volker Reichelt | 1 | -7/+1 |
2005-08-16 | re PR middle-end/23369 (build_range_check generates wrong code for funcptr co... | John David Anglin | 1 | -0/+9 |
2005-08-14 | fold-const (fold_binary): Call fold_build2 instead of fold (build. | James A. Morrison | 1 | -4/+3 |
2005-08-04 | tree.h (fold_build1): Change to macro and call fold_build1_stat. | Andrew Pinski | 1 | -7/+10 |
2005-08-02 | fold-const.c (tree_expr_nonnegative_p): frexp(x, &e) is positive if its first... | Richard Guenther | 1 | -1/+1 |
2005-08-01 | dwarf2out.c, [...]: Fix comment typos. | Kazu Hirata | 1 | -1/+1 |
2005-07-30 | fold-const.c (tree_expr_nonnegative_p): Always return true for non-integral t... | James A. Morrison | 1 | -1/+1 |
2005-07-26 | calls.c, [...]: Fix comment typos. | Kazu Hirata | 1 | -1/+1 |
2005-07-26 | re PR tree-optimization/22486 (Upcasts are not folded away) | Richard Guenther | 1 | -0/+23 |
2005-07-22 | fold-const.c (fold_unary): Don't strip signed nops from ABS_EXPRs. | James A. Morrison | 1 | -2/+7 |
2005-07-21 | re PR middle-end/21180 (checking on fold no longer happens in some cases) | Andrew Pinski | 1 | -13/+125 |
2005-07-21 | re PR tree-optimization/19055 (Minor bit optimization with or and xor) | Andrew Pinski | 1 | -0/+48 |
2005-07-20 | tree.h (tree_expr_nonzero_p): Export. | James A. Morrison | 1 | -4/+8 |
2005-07-20 | fold-const.c (tree_expr_nonnegative_p): Only return true for ABS_EXPR when fl... | James A. Morrison | 1 | -4/+8 |
2005-07-20 | Make CONSTRUCTOR use VEC to store initializers. | Giovanni Bajo | 1 | -3/+5 |
2005-07-15 | [multiple changes] | Andrew Pinski | 1 | -3/+6 |
2005-07-13 | fold-const.c (fold_binary): When comparing two simple ADDR_EXPR expressions... | Jeff Law | 1 | -3/+17 |