aboutsummaryrefslogtreecommitdiff
path: root/gcc/libgcc2.c
diff options
context:
space:
mode:
authorChandrakala Chavva <cchavva@redhat.com>2000-10-19 12:25:21 -0400
committerChandra Chavva <cchavva@gcc.gnu.org>2000-10-19 12:25:21 -0400
commit3cf3728197c7419f0b710a2cd7e8756fa7a15a22 (patch)
treef9deb81a678b1c2c4e8a9f5c09b4f7bb4e53f2b1 /gcc/libgcc2.c
parente6b4d09dda5ac70d672a8c61fb864dd21a20d9f9 (diff)
downloadgcc-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/libgcc2.c')
-rw-r--r--gcc/libgcc2.c2
1 files changed, 1 insertions, 1 deletions
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;