flags.h (issue_strict_overflow_warning): Convert to a macro.

2007-02-14  Richard Guenther  <rguenther@suse.de>

	* flags.h (issue_strict_overflow_warning): Convert to a macro.

From-SVN: r121951
This commit is contained in:
Richard Biener 2007-02-14 16:45:23 +00:00
parent 932eea3d18
commit c4e74b1aaa
2 changed files with 6 additions and 7 deletions

View File

@ -1,4 +1,8 @@
2007-12-14 Dorit Nuzman <dorit@il.ibm.com>
2007-02-14 Richard Guenther <rguenther@suse.de>
* flags.h (issue_strict_overflow_warning): Convert to a macro.
2007-02-14 Dorit Nuzman <dorit@il.ibm.com>
PR tree-optimization/30771
* tree-vect-analyze.c (vect_determine_vectorization_factor): Traverse

View File

@ -335,11 +335,6 @@ enum warn_strict_overflow_code
};
/* Whether to emit an overflow warning whose code is C. */
static inline bool
issue_strict_overflow_warning (enum warn_strict_overflow_code c)
{
return warn_strict_overflow >= (int) c;
}
#define issue_strict_overflow_warning(c) (warn_strict_overflow >= (int) (c))
#endif /* ! GCC_FLAGS_H */