aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1998-02-28 15:18:27 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1998-02-28 15:18:27 -0500
commit40a1101b2ea285f871f45487e84f444a2e0cbd09 (patch)
tree50621475d876fa02dbc6ec1808437819559a110f
parentca167f66a83d71dd27dc549339d18bf7e67d1b1f (diff)
(DATA_ALIGNMENT): Use POINTER_TYPE_P.
From-SVN: r18308
-rw-r--r--gcc/config/i860/fx2800.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i860/fx2800.h b/gcc/config/i860/fx2800.h
index 41c5bae3d06..26c7c253755 100644
--- a/gcc/config/i860/fx2800.h
+++ b/gcc/config/i860/fx2800.h
@@ -1,6 +1,6 @@
/* Target definitions for GNU compiler for Alliant FX/2800
running Concentrix 2.2
- Copyright (C) 1991, 1996 Free Software Foundation, Inc.
+ Copyright (C) 1991, 1996, 1998 Free Software Foundation, Inc.
Contributed by Howard Chu (hyc@hanauma.jpl.nasa.gov).
This file is part of GNU CC.
@@ -252,7 +252,7 @@ Boston, MA 02111-1307, USA. */
#define DATA_ALIGNMENT(dummy,align) \
((TREE_PUBLIC (decl) && \
- (TREE_CODE (TREE_TYPE (decl))==POINTER_TYPE)) ? 64:align)
+ (POINTER_TYPE_P (TREE_TYPE (decl)))) ? 64: align)
#undef FUNCTION_PROFILER
#define FUNCTION_PROFILER(FILE, LABELNO) \