summaryrefslogtreecommitdiff
path: root/gcc/libgcc2.c
diff options
context:
space:
mode:
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 24750837ba2..88f1fddd3a2 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;