From 6f4d72224e91330c6c02d5b96b04b97e84024589 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 1 Dec 1998 21:05:17 +0000 Subject: c-common.c (declare_function_name): Declare predefinied variable `__func__'. * c-common.c (declare_function_name): Declare predefinied variable `__func__'. * c-decl.c (flag_isoc9x): Set to 1 by default. (c_decode_option): Handle -std= option. Remove -flang-isoc9x. (grokdeclarator): Always emit warning about implicit int for ISO C 9x. * c-parse.in: Allow constructors in ISO C 9x. Rewrite designator list handling. Allow [*] parameters. Don't warn about comma at end of enum definition for ISO C 9x. * cccp.c (c9x): New variable. (rest_extension): New variable. (print_help): Document new -std= option. (main): Recognize -std= option. Set c9x appropriately. (create_definition): Recognize ISO C 9x vararg macros. * gcc.c (default_compilers): Adjust specs for -std options. (option_map): Add --std. (display_help): Document -std. * toplev.c (documented_lang_options): Add -std and remove -flang-isoc9x. * c-lex.c (yylex): Recognize hex FP constants and call REAL_VALUE_ATOF or REAL_VALUE_HTOF based on base of the constants. * fold-const.c (real_hex_to_f): New function. Replacement function for hex FP conversion if REAL_ARITHMETIC is not defined. * real.c (asctoeg): Add handling of hex FP constants. * real.h: Define REAL_VALUE_HTOF if necessary using ereal_atof or real_hex_to_f. Co-Authored-By: Richard Henderson Co-Authored-By: Stephen L Moshier From-SVN: r24049 --- gcc/reorg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/reorg.c') diff --git a/gcc/reorg.c b/gcc/reorg.c index f4b9f1f..375d4f8 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -1377,7 +1377,7 @@ mostly_true_jump (jump_insn, condition) always gives a correct answer. */ if (flag_branch_probabilities) { - rtx note = find_reg_note (jump_insn, REG_BR_PROB, 0);; + rtx note = find_reg_note (jump_insn, REG_BR_PROB, 0); if (note) { int prob = XINT (note, 0); -- cgit v1.1