aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/libgcc2.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 80e06b3..793263b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
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.
* invoke.texi: Added desciption for the new option -ftrapv.
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c
index 2475083..88f1fdd 100644
--- a/gcc/libgcc2.c
+++ b/gcc/libgcc2.c
@@ -141,7 +141,7 @@ __mulvsi3 (SItype a, SItype b)
w = a * b;
- if (((u >= 0) == (v >= 0)) ? w < 0 : w > 0)
+ if (((a >= 0) == (b >= 0)) ? w < 0 : w > 0)
abort ();
return w;