From 46d3a87396f1e5be05d7ef5709cdb0cc968b10cf Mon Sep 17 00:00:00 2001 From: Chandrakala Chavva Date: Mon, 10 Jul 2000 16:10:15 -0400 Subject: flags.h: Add new variable flag_single_precision_constant. * flags.h : Add new variable flag_single_precision_constant. * toplev.c (display_help) : Add -fsingle-precision-constant option. (flag_single_precision_constant): New. * c-lex.c (yylex): Convert floating point constant to single precision constant. * invoke.texi : Add documentation for this new option. From-SVN: r34946 --- gcc/flags.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/flags.h') diff --git a/gcc/flags.h b/gcc/flags.h index 3c543bc..3dc5c7e 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -379,6 +379,11 @@ extern int flag_schedule_speculative_load_dangerous; by a cheaper branch, on a count register. */ extern int flag_branch_on_count_reg; +/* This option is set to 1 on -fsingle-precision-constant option which is + used to convert the floating point constants to single precision + constants. */ + +extern int flag_single_precision_constant; /* Nonzero means put things in delayed-branch slots if supported. */ -- cgit v1.1