summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-06 00:10:50 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-06 00:10:50 -0700
commitb7cd80d37de51311e4cbf73dc9cdf231c5352bb1 (patch)
treef46af40057d01a30350d41af8fcb64f07618b3ef
parent37df336745b23a7394a97e93ffe8944376d194db (diff)
Remove CRAY/WORD64 support
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--os/io.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/os/io.c b/os/io.c
index f2f4b36..124ecd8 100644
--- a/os/io.c
+++ b/os/io.c
@@ -153,17 +153,6 @@ ReadRequest(ClientPtr client)
oci->bufptr += oci->lenLastReq;
gotnow = oci->bufcnt + oci->buffer - oci->bufptr;
-
-#ifdef WORD64
- /* need 8-byte alignment */
- if ((oci->bufptr - oci->buffer) & 7 && gotnow > 0)
- {
- memmove( oci->buffer, oci->bufptr, gotnow);
- oci->bufptr = oci->buffer;
- oci->bufcnt = gotnow;
- }
-#endif
-
request = (fsReq *) oci->bufptr;
/* not enough for a request */