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, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
29 #ifdef HANDLE_SYSV_PRAGMA
31 /* When structure field packing is in effect, this variable is the
32 number of bits to use as the maximum alignment. When packing is not
33 in effect, this is zero. */
35 extern int maximum_field_alignment
;
37 /* File used for outputting assembler code. */
38 extern FILE *asm_out_file
;
40 /* Handle one token of a pragma directive. TOKEN is the
41 current token, and STRING is its printable form. */
44 handle_pragma_token (string
, token
)
48 static enum pragma_state state
= ps_start
, type
;
57 if (state
== ps_right
)
58 maximum_field_alignment
= align
* 8;
60 warning ("malformed `#pragma pack'");
62 else if (type
== ps_weak
)
64 #ifdef HANDLE_PRAGMA_WEAK
65 if (HANDLE_PRAGMA_WEAK
)
66 handle_pragma_weak (state
, name
, value
);
68 #endif /* HANDLE_PRAMA_WEAK */
71 type
= state
= ps_start
;
78 if (token
&& TREE_CODE (token
) == IDENTIFIER_NODE
)
80 if (strcmp (IDENTIFIER_POINTER (token
), "pack") == 0)
81 type
= state
= ps_pack
;
82 else if (strcmp (IDENTIFIER_POINTER (token
), "weak") == 0)
83 type
= state
= ps_weak
;
85 type
= state
= ps_done
;
88 type
= state
= ps_done
;
92 if (token
&& TREE_CODE (token
) == IDENTIFIER_NODE
)
94 name
= IDENTIFIER_POINTER (token
);
102 state
= (strcmp (string
, "=") ? ps_bad
: ps_equals
);
106 if (token
&& TREE_CODE (token
) == IDENTIFIER_NODE
)
108 value
= IDENTIFIER_POINTER (token
);
120 if (strcmp (string
, "(") == 0)
127 if (token
&& TREE_CODE (token
) == INTEGER_CST
128 && TREE_INT_CST_HIGH (token
) == 0)
129 switch (TREE_INT_CST_LOW (token
))
134 align
= TREE_INT_CST_LOW (token
);
141 else if (! token
&& strcmp (string
, ")") == 0)
151 if (strcmp (string
, ")") == 0)
169 #endif /* HANDLE_SYSV_PRAGMA */