diff options
author | Torbjorn Granlund <tege@swox.com> | 1992-03-17 16:42:55 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@swox.com> | 1992-03-17 16:42:55 +0000 |
commit | c7486d0b53fb2017e5fa528356248053044670fe (patch) | |
tree | 13efe3b5a78d1c7e06b9b5a746285706f03f6302 /sysdeps/rs6000/memcopy.h | |
parent | e419b460b0668d8076e83faca36d1a8a1663dcac (diff) | |
download | glibc-c7486d0b53fb2017e5fa528356248053044670fe.tar glibc-c7486d0b53fb2017e5fa528356248053044670fe.tar.gz glibc-c7486d0b53fb2017e5fa528356248053044670fe.tar.bz2 glibc-c7486d0b53fb2017e5fa528356248053044670fe.zip |
entered into RCS
Diffstat (limited to 'sysdeps/rs6000/memcopy.h')
-rw-r--r-- | sysdeps/rs6000/memcopy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/rs6000/memcopy.h b/sysdeps/rs6000/memcopy.h index 36e9f2453b..873b31200b 100644 --- a/sysdeps/rs6000/memcopy.h +++ b/sysdeps/rs6000/memcopy.h @@ -39,7 +39,7 @@ Cambridge, MA 02139, USA. */ #define BYTE_COPY_BWD(dst_ep, src_ep, nbytes) \ do \ { \ - size_t __nbytes; \ + size_t __nbytes = (nbytes); \ dst_ep -= __nbytes; \ src_ep -= __nbytes; \ asm volatile("mtspr 1,%2\n" \ |