Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 07e3fb0

Browse files
committed
More work in the right direction on linux/alpha
From: Ryan Kirkpatrick <rkirkpat@nag.cs.colorado.edu>
1 parent 5da68b9 commit 07e3fb0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/backend/utils/adt/float.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.29 1998/02/26 04:37:07 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.30 1998/04/12 02:58:17 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -132,7 +132,7 @@ extern int isinf(double x);
132132
* until the distributions are updated.
133133
* --djm 12/16/96
134134
*/
135-
#if defined(linuxalpha) && !defined(UNSAFE_FLOATS)
135+
#if ( defined(linux) && defined(alpha) ) && !defined(UNSAFE_FLOATS)
136136
#define UNSAFE_FLOATS
137137
#endif
138138

src/include/utils/memutils.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
* Copyright (c) 1994, Regents of the University of California
1717
*
18-
* $Id: memutils.h,v 1.14 1998/02/26 04:44:08 momjian Exp $
18+
* $Id: memutils.h,v 1.15 1998/04/12 02:58:22 scrappy Exp $
1919
*
2020
* NOTES
2121
* some of the information in this file will be moved to
@@ -67,7 +67,7 @@ s...)
6767
*/
6868
#if defined(sun) && ! defined(sparc)
6969
#define LONGALIGN(LEN) SHORTALIGN(LEN)
70-
#elif defined (alpha) || defined(linuxalpha)
70+
#elif defined (alpha)
7171

7272
/*
7373
* even though "long alignment" should really be on 8-byte boundaries for

0 commit comments

Comments
 (0)