Commit 22a8a52d by Eric Christopher

if-div.c: New file.

2007-05-02  Eric Christopher  <echristo@apple.com>

	    * gcc.dg/cpp/if-div.c: New file.

2007-05-02  Eric Christopher  <echristo@apple.com>

	    * expr.c (num_div_op): Don't overflow if the result is
	    zero.

From-SVN: r124358
parent fca35e1b
2007-05-02 Eric Christopher <echristo@apple.com>
* gcc.dg/cpp/if-div.c: New file.
2007-05-02 Tom Tromey <tromey@redhat.com> 2007-05-02 Tom Tromey <tromey@redhat.com>
PR preprocessor/28709: PR preprocessor/28709:
/* { dg-do preprocess } */
/* Test that this preprocesses without error. */
#if (-1)/2
#endif
2007-05-02 Eric Christopher <echristo@apple.com>
* expr.c (num_div_op): Don't overflow if the result is
zero.
2007-05-02 Tom Tromey <tromey@redhat.com> 2007-05-02 Tom Tromey <tromey@redhat.com>
PR preprocessor/28709: PR preprocessor/28709:
......
...@@ -1527,7 +1527,8 @@ num_div_op (cpp_reader *pfile, cpp_num lhs, cpp_num rhs, enum cpp_ttype op) ...@@ -1527,7 +1527,8 @@ num_div_op (cpp_reader *pfile, cpp_num lhs, cpp_num rhs, enum cpp_ttype op)
{ {
if (negate) if (negate)
result = num_negate (result, precision); result = num_negate (result, precision);
result.overflow = num_positive (result, precision) ^ !negate; result.overflow = (num_positive (result, precision) ^ !negate
&& !num_zerop (result));
} }
return result; return result;
......
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