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