Commit c4e74b1a by Richard Biener

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
parent 932eea3d
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
......
......@@ -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 */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment