diff options
author | Chandrakala Chavva <cchavva@redhat.com> | 2000-10-19 12:25:21 -0400 |
---|---|---|
committer | Chandra Chavva <cchavva@gcc.gnu.org> | 2000-10-19 12:25:21 -0400 |
commit | 3cf3728197c7419f0b710a2cd7e8756fa7a15a22 (patch) | |
tree | f9deb81a678b1c2c4e8a9f5c09b4f7bb4e53f2b1 /gcc | |
parent | e6b4d09dda5ac70d672a8c61fb864dd21a20d9f9 (diff) | |
download | gcc-3cf3728197c7419f0b710a2cd7e8756fa7a15a22.zip gcc-3cf3728197c7419f0b710a2cd7e8756fa7a15a22.tar.gz gcc-3cf3728197c7419f0b710a2cd7e8756fa7a15a22.tar.bz2 |
* libgcc2.c (_mulvsi3): Change variables u and v to a and b.
From-SVN: r36952
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/libgcc2.c | 2 |
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; |