* configure.in (CHECK_DECLS): Add snprintf and vsnprintf.
[deliverable/binutils-gdb.git] / gas / as.h
CommitLineData
252b5132 1/* as.h - global header file
f7e42eb4 2 Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
f17c130b 3 1999, 2000, 2001, 2002, 2003, 2004, 2005
252b5132
RH
4 Free Software Foundation, Inc.
5
6 This file is part of GAS, the GNU Assembler.
7
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
20 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
21 02110-1301, USA. */
252b5132
RH
22
23#ifndef GAS
24#define GAS 1
30a2b4ef 25/* I think this stuff is largely out of date. xoxorich.
329e276d
NC
26
27 CAPITALISED names are #defined.
28 "lowercaseH" is #defined if "lowercase.h" has been #include-d.
29 "lowercaseT" is a typedef of "lowercase" objects.
30 "lowercaseP" is type "pointer to object of type 'lowercase'".
31 "lowercaseS" is typedef struct ... lowercaseS.
32
33 #define DEBUG to enable all the "know" assertion tests.
34 #define SUSPECT when debugging hash code.
35 #define COMMON as "extern" for all modules except one, where you #define
36 COMMON as "".
37 If TEST is #defined, then we are testing a module: #define COMMON as "". */
252b5132
RH
38
39#include "config.h"
c20f4f8c 40#include "bin-bugs.h"
252b5132
RH
41
42/* This is the code recommended in the autoconf documentation, almost
43 verbatim. If it doesn't work for you, let me know, and notify
44 djm@gnu.ai.mit.edu as well. */
252b5132
RH
45/* Added void* version for STDC case. This is to be compatible with
46 the declaration in bison.simple, used for m68k operand parsing.
47 --KR 1995.08.08 */
48/* Force void* decl for hpux. This is what Bison uses. --KR 1995.08.16 */
49
fa6e9318 50#ifndef __GNUC__
252b5132
RH
51# if HAVE_ALLOCA_H
52# include <alloca.h>
53# else
54# ifdef _AIX
fa6e9318
AM
55/* Indented so that pre-ansi C compilers will ignore it, rather than
56 choke on it. Some versions of AIX require this to be the first
57 thing in the file. */
252b5132
RH
58 #pragma alloca
59# else
60# ifndef alloca /* predefined by HP cc +Olibcalls */
61# if !defined (__STDC__) && !defined (__hpux)
62extern char *alloca ();
63# else
64extern void *alloca ();
65# endif /* __STDC__, __hpux */
66# endif /* alloca */
67# endif /* _AIX */
68# endif /* HAVE_ALLOCA_H */
fa6e9318 69#endif /* __GNUC__ */
252b5132
RH
70
71/* Now, tend to the rest of the configuration. */
72
a01b9fa4 73/* System include files first... */
252b5132 74#include <stdio.h>
252b5132
RH
75#ifdef HAVE_STRING_H
76#include <string.h>
77#else
78#ifdef HAVE_STRINGS_H
79#include <strings.h>
80#endif
81#endif
82#ifdef HAVE_STDLIB_H
83#include <stdlib.h>
84#endif
85#ifdef HAVE_UNISTD_H
86#include <unistd.h>
87#endif
88#ifdef HAVE_SYS_TYPES_H
89/* for size_t, pid_t */
90#include <sys/types.h>
91#endif
92
29589b0c 93#include "getopt.h"
252b5132
RH
94/* The first getopt value for machine-independent long options.
95 150 isn't special; it's just an arbitrary non-ASCII char value. */
96#define OPTION_STD_BASE 150
97/* The first getopt value for machine-dependent long options.
d8374dcd
HPN
98 190 gives the standard options room to grow. */
99#define OPTION_MD_BASE 190
252b5132
RH
100
101#ifdef DEBUG
102#undef NDEBUG
103#endif
a1934524 104#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6)
252b5132
RH
105#define __PRETTY_FUNCTION__ ((char*)0)
106#endif
c9dea48b
AM
107#define assert(P) \
108 ((void) ((P) ? 0 : (as_assert (__FILE__, __LINE__, __PRETTY_FUNCTION__), 0)))
252b5132
RH
109#undef abort
110#define abort() as_abort (__FILE__, __LINE__, __PRETTY_FUNCTION__)
111
a01b9fa4 112/* Now GNU header files... */
8fce3f5e 113#include "ansidecl.h"
8fce3f5e 114#include "bfd.h"
8fce3f5e 115#include "libiberty.h"
252b5132
RH
116
117/* Define the standard progress macros. */
8fce3f5e 118#include "progress.h"
252b5132
RH
119
120/* This doesn't get taken care of anywhere. */
329e276d 121#ifndef __MWERKS__ /* Metrowerks C chokes on the "defined (inline)" */
252b5132
RH
122#if !defined (__GNUC__) && !defined (inline)
123#define inline
124#endif
125#endif /* !__MWERKS__ */
126
127/* Other stuff from config.h. */
e8a38df5
AL
128#ifdef NEED_DECLARATION_ENVIRON
129extern char **environ;
252b5132 130#endif
e8a38df5
AL
131#ifdef NEED_DECLARATION_ERRNO
132extern int errno;
133#endif
134#ifdef NEED_DECLARATION_FFS
135extern int ffs (int);
252b5132
RH
136#endif
137#ifdef NEED_DECLARATION_FREE
138extern void free ();
139#endif
e8a38df5
AL
140#ifdef NEED_DECLARATION_MALLOC
141extern PTR malloc ();
142extern PTR realloc ();
252b5132 143#endif
e8a38df5
AL
144#ifdef NEED_DECLARATION_STRSTR
145extern char *strstr ();
252b5132
RH
146#endif
147
148/* This is needed for VMS. */
149#if ! defined (HAVE_UNLINK) && defined (HAVE_REMOVE)
150#define unlink remove
151#endif
152
153/* Hack to make "gcc -Wall" not complain about obstack macros. */
154#if !defined (memcpy) && !defined (bcopy)
d1a6c242 155#define bcopy(src,dest,size) memcpy (dest, src, size)
252b5132
RH
156#endif
157
158/* Make Saber happier on obstack.h. */
159#ifdef SABER
160#undef __PTR_TO_INT
ee515fb7 161#define __PTR_TO_INT(P) ((int) (P))
252b5132 162#undef __INT_TO_PTR
ee515fb7 163#define __INT_TO_PTR(P) ((char *) (P))
252b5132
RH
164#endif
165
166#ifndef __LINE__
167#define __LINE__ "unknown"
168#endif /* __LINE__ */
169
170#ifndef __FILE__
171#define __FILE__ "unknown"
172#endif /* __FILE__ */
173
174#ifndef FOPEN_WB
177a493c 175#if defined GO32 || defined __MINGW32__
252b5132
RH
176#include "fopen-bin.h"
177#else
178#include "fopen-same.h"
179#endif
180#endif
181
182#ifndef EXIT_SUCCESS
183#define EXIT_SUCCESS 0
184#define EXIT_FAILURE 1
185#endif
186
12ff5d56
AM
187#ifndef SEEK_SET
188#define SEEK_SET 0
189#endif
190
252b5132
RH
191#define obstack_chunk_alloc xmalloc
192#define obstack_chunk_free xfree
193
194#define xfree free
195
196#include "asintl.h"
197
30a2b4ef
KH
198#define BAD_CASE(val) \
199 { \
200 as_fatal (_("Case value %ld unexpected at line %d of file \"%s\"\n"), \
201 (long) val, __LINE__, __FILE__); \
202 }
252b5132
RH
203\f
204#include "flonum.h"
205
206/* These are assembler-wide concepts */
207
252b5132
RH
208extern bfd *stdoutput;
209typedef bfd_vma addressT;
210typedef bfd_signed_vma offsetT;
252b5132
RH
211
212/* Type of symbol value, etc. For use in prototypes. */
213typedef addressT valueT;
214
215#ifndef COMMON
216#ifdef TEST
329e276d 217#define COMMON /* Declare our COMMONs storage here. */
252b5132 218#else
329e276d 219#define COMMON extern /* Our commons live elsewhere. */
252b5132
RH
220#endif
221#endif
222/* COMMON now defined */
223
224#ifdef DEBUG
225#ifndef know
329e276d 226#define know(p) assert(p) /* Verify our assumptions! */
252b5132
RH
227#endif /* not yet defined */
228#else
329e276d 229#define know(p) /* know() checks are no-op.ed */
252b5132
RH
230#endif
231\f
232/* input_scrub.c */
233
30a2b4ef
KH
234/* Supplies sanitised buffers to read.c.
235 Also understands printing line-number part of error messages. */
252b5132 236\f
252b5132
RH
237/* subsegs.c Sub-segments. Also, segment(=expression type)s.*/
238
252b5132 239typedef asection *segT;
329e276d 240#define SEG_NORMAL(SEG) ( (SEG) != absolute_section \
252b5132
RH
241 && (SEG) != undefined_section \
242 && (SEG) != reg_section \
243 && (SEG) != expr_section)
252b5132
RH
244typedef int subsegT;
245
329e276d 246/* What subseg we are accessing now? */
252b5132
RH
247COMMON subsegT now_subseg;
248
a01b9fa4 249/* Segment our instructions emit to. */
252b5132
RH
250COMMON segT now_seg;
251
252b5132 252#define segment_name(SEG) bfd_get_section_name (stdoutput, SEG)
252b5132 253
252b5132
RH
254extern segT reg_section, expr_section;
255/* Shouldn't these be eliminated someday? */
256extern segT text_section, data_section, bss_section;
257#define absolute_section bfd_abs_section_ptr
258#define undefined_section bfd_und_section_ptr
252b5132 259
329e276d
NC
260enum _relax_state
261{
be95a9c1
AM
262 /* Dummy frag used by listing code. */
263 rs_dummy = 0,
264
30a2b4ef
KH
265 /* Variable chars to be repeated fr_offset times.
266 Fr_symbol unused. Used with fr_offset == 0 for a
267 constant length frag. */
be95a9c1 268 rs_fill,
30a2b4ef
KH
269
270 /* Align. The fr_offset field holds the power of 2 to which to
271 align. The fr_var field holds the number of characters in the
272 fill pattern. The fr_subtype field holds the maximum number of
273 bytes to skip when aligning, or 0 if there is no maximum. */
274 rs_align,
275
276 /* Align code. The fr_offset field holds the power of 2 to which
277 to align. This type is only generated by machine specific
278 code, which is normally responsible for handling the fill
279 pattern. The fr_subtype field holds the maximum number of
280 bytes to skip when aligning, or 0 if there is no maximum. */
281 rs_align_code,
282
0a9ef439
RH
283 /* Test for alignment. Like rs_align, but used by several targets
284 to warn if data is not properly aligned. */
285 rs_align_test,
286
30a2b4ef
KH
287 /* Org: Fr_offset, fr_symbol: address. 1 variable char: fill
288 character. */
289 rs_org,
252b5132
RH
290
291#ifndef WORKING_DOT_WORD
30a2b4ef
KH
292 /* JF: gunpoint */
293 rs_broken_word,
252b5132
RH
294#endif
295
329e276d 296 /* Machine specific relaxable (or similarly alterable) instruction. */
30a2b4ef 297 rs_machine_dependent,
252b5132 298
30a2b4ef
KH
299 /* .space directive with expression operand that needs to be computed
300 later. Similar to rs_org, but different.
301 fr_symbol: operand
302 1 variable char: fill character */
303 rs_space,
252b5132 304
30a2b4ef
KH
305 /* A DWARF leb128 value; only ELF uses this. The subtype is 0 for
306 unsigned, 1 for signed. */
307 rs_leb128,
252b5132 308
30a2b4ef 309 /* Exception frame information which we may be able to optimize. */
220e750f
RH
310 rs_cfa,
311
312 /* Cross-fragment dwarf2 line number optimization. */
313 rs_dwarf2dbg
30a2b4ef 314};
252b5132
RH
315
316typedef enum _relax_state relax_stateT;
317
318/* This type is used in prototypes, so it can't be a type that will be
319 widened for argument passing. */
320typedef unsigned int relax_substateT;
321
322/* Enough bits for address, but still an integer type.
323 Could be a problem, cross-assembling for 64-bit machines. */
324typedef addressT relax_addressT;
f17c130b
AM
325
326struct relax_type
327{
328 /* Forward reach. Signed number. > 0. */
329 offsetT rlx_forward;
330 /* Backward reach. Signed number. < 0. */
331 offsetT rlx_backward;
332
333 /* Bytes length of this address. */
334 unsigned char rlx_length;
335
336 /* Next longer relax-state. 0 means there is no 'next' relax-state. */
337 relax_substateT rlx_more;
338};
339
340typedef struct relax_type relax_typeS;
252b5132 341\f
329e276d 342/* main program "as.c" (command arguments etc). */
252b5132
RH
343
344COMMON unsigned char flag_no_comments; /* -f */
345COMMON unsigned char flag_debug; /* -D */
346COMMON unsigned char flag_signed_overflow_ok; /* -J */
347#ifndef WORKING_DOT_WORD
348COMMON unsigned char flag_warn_displacement; /* -K */
349#endif
350
351/* True if local symbols should be retained. */
352COMMON int flag_keep_locals; /* -L */
353
354/* True if we are assembling in MRI mode. */
355COMMON int flag_mri;
356
252b5132
RH
357/* Should the data section be made read-only and appended to the text
358 section? */
359COMMON unsigned char flag_readonly_data_in_text; /* -R */
360
361/* True if warnings should be inhibited. */
362COMMON int flag_no_warnings; /* -W */
363
2bdd6cf5
GK
364/* True if warnings count as errors. */
365COMMON int flag_fatal_warnings; /* --fatal-warnings */
366
252b5132
RH
367/* True if we should attempt to generate output even if non-fatal errors
368 are detected. */
369COMMON unsigned char flag_always_generate_output; /* -Z */
370
a01b9fa4 371/* This is true if the assembler should output time and space usage. */
252b5132
RH
372COMMON unsigned char flag_print_statistics;
373
374/* True if local absolute symbols are to be stripped. */
375COMMON int flag_strip_local_absolute;
376
377/* True if we should generate a traditional format object file. */
378COMMON int flag_traditional_format;
379
68d55fe3
JJ
380/* TRUE if .note.GNU-stack section with SEC_CODE should be created */
381COMMON int flag_execstack;
382
383/* TRUE if .note.GNU-stack section with SEC_CODE should be created */
384COMMON int flag_noexecstack;
385
252b5132
RH
386/* name of emitted object file */
387COMMON char *out_file_name;
388
389/* name of file defining extensions to the basic instruction set */
390COMMON char *insttbl_file_name;
391
a01b9fa4 392/* TRUE if we need a second pass. */
252b5132
RH
393COMMON int need_pass_2;
394
395/* TRUE if we should do no relaxing, and
396 leave lots of padding. */
397COMMON int linkrelax;
398
399/* TRUE if we should produce a listing. */
400extern int listing;
401
4dc7ead9
RH
402/* Type of debugging information we should generate. We currently support
403 stabs, ECOFF, and DWARF2.
404
405 NOTE! This means debug information about the assembly source code itself
406 and _not_ about possible debug information from a high-level language.
407 This is especially relevant to DWARF2, since the compiler may emit line
408 number directives that the assembler resolves. */
252b5132 409
329e276d
NC
410enum debug_info_type
411{
30a2b4ef
KH
412 DEBUG_UNSPECIFIED,
413 DEBUG_NONE,
414 DEBUG_STABS,
415 DEBUG_ECOFF,
416 DEBUG_DWARF,
417 DEBUG_DWARF2
418};
252b5132
RH
419
420extern enum debug_info_type debug_type;
05da4302 421extern int use_gnu_debug_info_extensions;
252b5132
RH
422\f
423/* Maximum level of macro nesting. */
424extern int max_macro_nest;
425
54cfded0
AM
426/* Verbosity level. */
427extern int verbose;
428
252b5132
RH
429/* Obstack chunk size. Keep large for efficient space use, make small to
430 increase malloc calls for monitoring memory allocation. */
431extern int chunksize;
432
329e276d
NC
433struct _pseudo_type
434{
30a2b4ef
KH
435 /* assembler mnemonic, lower case, no '.' */
436 const char *poc_name;
437 /* Do the work */
73ee5e4c 438 void (*poc_handler) (int);
30a2b4ef
KH
439 /* Value to pass to handler */
440 int poc_val;
441};
252b5132
RH
442
443typedef struct _pseudo_type pseudo_typeS;
444
445/* Prefer varargs for non-ANSI compiler, since some will barf if the
446 ellipsis definition is used with a no-arguments declaration. */
447#if defined (HAVE_VARARGS_H) && !defined (__STDC__)
448#undef HAVE_STDARG_H
449#endif
450
451#if defined (HAVE_STDARG_H)
452#define USE_STDARG
453#endif
454#if !defined (USE_STDARG) && defined (HAVE_VARARGS_H)
455#define USE_VARARGS
456#endif
457
458#ifdef USE_STDARG
459#if (__GNUC__ >= 2) && !defined(VMS)
460/* for use with -Wformat */
461
a1934524 462#if __GNUC__ == 2 && __GNUC_MINOR__ < 6
252b5132
RH
463/* Support for double underscores in attribute names was added in gcc
464 2.6, so avoid them if we are using an earlier version. */
465#define __printf__ printf
466#define __format__ format
467#endif
468
469#define PRINTF_LIKE(FCN) \
470 void FCN (const char *format, ...) \
471 __attribute__ ((__format__ (__printf__, 1, 2)))
472#define PRINTF_WHERE_LIKE(FCN) \
473 void FCN (char *file, unsigned int line, const char *format, ...) \
474 __attribute__ ((__format__ (__printf__, 3, 4)))
475
476#else /* __GNUC__ < 2 || defined(VMS) */
477
73ee5e4c
KH
478#define PRINTF_LIKE(FCN) void FCN (const char *format, ...)
479#define PRINTF_WHERE_LIKE(FCN) void FCN (char *file, \
480 unsigned int line, \
481 const char *format, ...)
252b5132
RH
482
483#endif /* __GNUC__ < 2 || defined(VMS) */
484
485#else /* ! USE_STDARG */
486
487#define PRINTF_LIKE(FCN) void FCN ()
488#define PRINTF_WHERE_LIKE(FCN) void FCN ()
489
490#endif /* ! USE_STDARG */
491
492PRINTF_LIKE (as_bad);
8fce3f5e 493PRINTF_LIKE (as_fatal) ATTRIBUTE_NORETURN;
252b5132
RH
494PRINTF_LIKE (as_tsktsk);
495PRINTF_LIKE (as_warn);
496PRINTF_WHERE_LIKE (as_bad_where);
497PRINTF_WHERE_LIKE (as_warn_where);
498
329e276d
NC
499void as_assert (const char *, int, const char *);
500void as_abort (const char *, int, const char *) ATTRIBUTE_NORETURN;
329e276d
NC
501void sprint_value (char *, addressT);
502int had_errors (void);
503int had_warnings (void);
504void as_warn_value_out_of_range (char *, offsetT, offsetT, offsetT, char *, unsigned);
505void as_bad_value_out_of_range (char *, offsetT, offsetT, offsetT, char *, unsigned);
506void print_version_id (void);
507char * app_push (void);
508char * atof_ieee (char *, int, LITTLENUM_TYPE *);
509char * input_scrub_include_file (char *, char *);
510void input_scrub_insert_line (const char *);
511void input_scrub_insert_file (char *);
512char * input_scrub_new_file (char *);
513char * input_scrub_next_buffer (char **bufp);
514int do_scrub_chars (int (*get) (char *, int), char *, int);
515int gen_to_words (LITTLENUM_TYPE *, int, long);
516int had_err (void);
517int ignore_input (void);
518void cond_finish_check (int);
519void cond_exit_macro (int);
520int seen_at_least_1_file (void);
521void app_pop (char *);
329e276d
NC
522void as_perror (const char *, const char *);
523void as_where (char **, unsigned int *);
524void bump_line_counters (void);
525void do_scrub_begin (int);
526void input_scrub_begin (void);
527void input_scrub_close (void);
528void input_scrub_end (void);
529int new_logical_line (char *, int);
530void subsegs_begin (void);
531void subseg_change (segT, int);
532segT subseg_new (const char *, subsegT);
533segT subseg_force_new (const char *, subsegT);
534void subseg_set (segT, subsegT);
535int subseg_text_p (segT);
4ee4d249 536int seg_not_empty_p (segT);
329e276d
NC
537void start_dependencies (char *);
538void register_dependency (char *);
539void print_dependencies (void);
329e276d 540segT subseg_get (const char *, int);
252b5132 541
252b5132
RH
542struct expressionS;
543struct fix;
2b47531b 544typedef struct symbol symbolS;
252b5132
RH
545struct relax_type;
546typedef struct frag fragS;
547
252b5132 548/* literal.c */
73ee5e4c 549valueT add_to_literal_pool (symbolS *, valueT, segT, int);
252b5132 550
73ee5e4c
KH
551int check_eh_frame (struct expressionS *, unsigned int *);
552int eh_frame_estimate_size_before_relax (fragS *);
553int eh_frame_relax_frag (fragS *);
554void eh_frame_convert_frag (fragS *);
73ee5e4c 555int generic_force_reloc (struct fix *);
ae6063d4 556
252b5132
RH
557#include "expr.h" /* Before targ-*.h */
558
329e276d 559/* This one starts the chain of target dependant headers. */
252b5132
RH
560#include "targ-env.h"
561
a161fe53
AM
562#ifdef OBJ_MAYBE_ELF
563#define IS_ELF (OUTPUT_FLAVOR == bfd_target_elf_flavour)
564#else
565#ifdef OBJ_ELF
566#define IS_ELF 1
567#else
568#define IS_ELF 0
569#endif
0d2bcfaf
NC
570#endif
571
252b5132
RH
572#include "write.h"
573#include "frags.h"
574#include "hash.h"
575#include "read.h"
576#include "symbols.h"
577
578#include "tc.h"
579#include "obj.h"
580
581#ifdef USE_EMULATIONS
582#include "emul.h"
583#endif
584#include "listing.h"
585
abd63a32
AM
586#ifdef TC_M68K
587/* True if we are assembling in m68k MRI mode. */
588COMMON int flag_m68k_mri;
4fa6945e 589#define DOLLAR_AMBIGU flag_m68k_mri
abd63a32
AM
590#else
591#define flag_m68k_mri 0
592#endif
593
4c400d5e 594#ifdef WARN_COMMENTS
329e276d
NC
595COMMON int warn_comment;
596COMMON unsigned int found_comment;
597COMMON char * found_comment_file;
4c400d5e
AM
598#endif
599
4fa6945e
NC
600#ifndef DOLLAR_AMBIGU
601#define DOLLAR_AMBIGU 0
602#endif
603
f805106c
TW
604#ifndef NUMBERS_WITH_SUFFIX
605#define NUMBERS_WITH_SUFFIX 0
606#endif
607
252b5132
RH
608#ifndef LOCAL_LABELS_DOLLAR
609#define LOCAL_LABELS_DOLLAR 0
610#endif
611
612#ifndef LOCAL_LABELS_FB
613#define LOCAL_LABELS_FB 0
614#endif
615
abd63a32
AM
616#ifndef LABELS_WITHOUT_COLONS
617#define LABELS_WITHOUT_COLONS 0
618#endif
619
620#ifndef NO_PSEUDO_DOT
621#define NO_PSEUDO_DOT 0
622#endif
623
252b5132
RH
624#ifndef TEXT_SECTION_NAME
625#define TEXT_SECTION_NAME ".text"
626#define DATA_SECTION_NAME ".data"
627#define BSS_SECTION_NAME ".bss"
628#endif
629
bea9907b
TW
630#ifndef OCTETS_PER_BYTE_POWER
631#define OCTETS_PER_BYTE_POWER 0
632#endif
633#ifndef OCTETS_PER_BYTE
634#define OCTETS_PER_BYTE (1<<OCTETS_PER_BYTE_POWER)
635#endif
636#if OCTETS_PER_BYTE != (1<<OCTETS_PER_BYTE_POWER)
637 #error "Octets per byte conflicts with its power-of-two definition!"
638#endif
639
252b5132 640#endif /* GAS */
This page took 0.310208 seconds and 4 git commands to generate.