diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-04 21:45:40 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-04 21:45:40 +0000 |
commit | fd4187852a41eb36670a66b262903da288f5c62e (patch) | |
tree | 30e041315056e81a869800321d0fc4cac6f901b9 /gcc/libgcc2.c | |
parent | b11b0b93b0687c21e5970ef6d694a61de108349d (diff) | |
download | gcc-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.c | 2 |
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; |