diff options
author | Randolph Chung <tausq@parisc-linux.org> | 2005-10-21 22:48:34 -0400 |
---|---|---|
committer | Kyle McMartin <kyle@parisc-linux.org> | 2005-10-21 22:48:34 -0400 |
commit | fa681a1800a58234afe4d876c1752c0751826d22 (patch) | |
tree | 121863680509f24c2edc94009a703486b16e8768 /arch/parisc/lib/memcpy.c | |
parent | 7efe1611b2db9025ffc52a686897ab91820caeb4 (diff) |
[PARISC] Disable use of fpregs in pa_memcpy
Disable use of fpregs in pa_memcpy, and turn on the
-mdisable-fpregs flag.
Signed-off-by: Randolph Chung <tausq@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'arch/parisc/lib/memcpy.c')
-rw-r--r-- | arch/parisc/lib/memcpy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/parisc/lib/memcpy.c b/arch/parisc/lib/memcpy.c index feb1b9f42c2b..b7098035321f 100644 --- a/arch/parisc/lib/memcpy.c +++ b/arch/parisc/lib/memcpy.c | |||
@@ -339,6 +339,7 @@ unsigned long pa_memcpy(void *dstp, const void *srcp, unsigned long len) | |||
339 | pds = (double *)pcs; | 339 | pds = (double *)pcs; |
340 | pdd = (double *)pcd; | 340 | pdd = (double *)pcd; |
341 | 341 | ||
342 | #if 0 | ||
342 | /* Copy 8 doubles at a time */ | 343 | /* Copy 8 doubles at a time */ |
343 | while (len >= 8*sizeof(double)) { | 344 | while (len >= 8*sizeof(double)) { |
344 | register double r1, r2, r3, r4, r5, r6, r7, r8; | 345 | register double r1, r2, r3, r4, r5, r6, r7, r8; |
@@ -366,6 +367,7 @@ unsigned long pa_memcpy(void *dstp, const void *srcp, unsigned long len) | |||
366 | fstdma(d_space, r8, pdd, pmc_store_exc); | 367 | fstdma(d_space, r8, pdd, pmc_store_exc); |
367 | len -= 8*sizeof(double); | 368 | len -= 8*sizeof(double); |
368 | } | 369 | } |
370 | #endif | ||
369 | 371 | ||
370 | pws = (unsigned int *)pds; | 372 | pws = (unsigned int *)pds; |
371 | pwd = (unsigned int *)pdd; | 373 | pwd = (unsigned int *)pdd; |