summaryrefslogtreecommitdiff
path: root/gcc/libgcc2.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2003-02-04 21:45:40 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2003-02-04 21:45:40 +0000
commitfd4187852a41eb36670a66b262903da288f5c62e (patch)
tree30e041315056e81a869800321d0fc4cac6f901b9 /gcc/libgcc2.c
parentb11b0b93b0687c21e5970ef6d694a61de108349d (diff)
downloadgcc-fd4187852a41eb36670a66b262903da288f5c62e.tar.gz
* libgcc2.c (__subvdi3): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62406 138bc75d-0d04-0410-961f-82ee72b054a4
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 c2279ef92b7..a6eb1f09f48 100644
--- a/gcc/libgcc2.c
+++ b/gcc/libgcc2.c
@@ -129,7 +129,7 @@ DWtype
__subvdi3 (DWtype a, DWtype b)
{
#ifdef L_addvdi3
- return (a, (-b));
+ return __addvdi3 (a, (-b));
#else
DWtype w;