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