Commit 3cf37281 by Chandrakala Chavva Committed by Chandra Chavva

* libgcc2.c (_mulvsi3): Change variables u and v to a and b.

From-SVN: r36952
parent e6b4d09d
2000-10-19 Chandrakala Chavva <cchavva@redhat.com> 2000-10-19 Chandrakala Chavva <cchavva@redhat.com>
* libgcc2.c (_mulvsi3): Change variables u and v to a and b.
2000-10-19 Chandrakala Chavva <cchavva@redhat.com>
* expmed.c: Minor corrections in comments. * expmed.c: Minor corrections in comments.
* invoke.texi: Added desciption for the new option -ftrapv. * invoke.texi: Added desciption for the new option -ftrapv.
......
...@@ -141,7 +141,7 @@ __mulvsi3 (SItype a, SItype b) ...@@ -141,7 +141,7 @@ __mulvsi3 (SItype a, SItype b)
w = a * b; w = a * b;
if (((u >= 0) == (v >= 0)) ? w < 0 : w > 0) if (((a >= 0) == (b >= 0)) ? w < 0 : w > 0)
abort (); abort ();
return w; return w;
......
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