1 /* Handle #pragma, system V.4 style. Supports #pragma weak and #pragma pack.
2 Copyright (C) 1992 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
27 #ifdef HANDLE_SYSV_PRAGMA
29 /* When structure field packing is in effect, this variable is the
30 number of bits to use as the maximum alignment. When packing is not
31 in effect, this is zero. */
33 extern int maximum_field_alignment
;
35 /* File used for outputting assembler code. */
36 extern FILE *asm_out_file
;
38 /* Handle one token of a pragma directive. TOKEN is the
39 current token, and STRING is its printable form. */
42 handle_pragma_token (string
, token
)
46 static enum pragma_state state
= ps_start
, type
;
55 if (state
== ps_right
)
56 maximum_field_alignment
= align
* 8;
58 warning ("malformed `#pragma pack'");
60 else if (type
== ps_weak
)
62 #ifdef HANDLE_PRAGMA_WEAK
63 if (HANDLE_PRAGMA_WEAK
)
64 handle_pragma_weak (state
, name
, value
);
66 #endif /* HANDLE_PRAMA_WEAK */
69 type
= state
= ps_start
;
76 if (token
&& TREE_CODE (token
) == IDENTIFIER_NODE
)
78 if (strcmp (IDENTIFIER_POINTER (token
), "pack") == 0)
79 type
= state
= ps_pack
;
80 else if (strcmp (IDENTIFIER_POINTER (token
), "weak") == 0)
81 type
= state
= ps_weak
;
83 type
= state
= ps_done
;
86 type
= state
= ps_done
;
90 if (token
&& TREE_CODE (token
) == IDENTIFIER_NODE
)
92 name
= IDENTIFIER_POINTER (token
);
100 state
= (strcmp (string
, "=") ? ps_bad
: ps_equals
);
104 if (token
&& TREE_CODE (token
) == IDENTIFIER_NODE
)
106 value
= IDENTIFIER_POINTER (token
);
118 if (strcmp (string
, "(") == 0)
125 if (token
&& TREE_CODE (token
) == INTEGER_CST
126 && TREE_INT_CST_HIGH (token
) == 0)
127 switch (TREE_INT_CST_LOW (token
))
132 align
= TREE_INT_CST_LOW (token
);
139 else if (! token
&& strcmp (string
, ")") == 0)
149 if (strcmp (string
, ")") == 0)
167 #endif /* HANDLE_SYSV_PRAGMA */