diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2012-05-03 14:03:01 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2012-05-03 14:03:01 +0200 |
commit | 1cbdef5105b002f57a9e60be4768084b3c36e405 (patch) | |
tree | 415c3f9a551c1e53ccf211e6ebca56b9ab4599b2 /gcc/config/alpha | |
parent | 520b49f3f1f40d401695c62329446c99e95f3894 (diff) | |
download | gcc-1cbdef5105b002f57a9e60be4768084b3c36e405.zip gcc-1cbdef5105b002f57a9e60be4768084b3c36e405.tar.gz gcc-1cbdef5105b002f57a9e60be4768084b3c36e405.tar.bz2 |
elf.h (MAX_OFILE_ALIGNMENT): Remove.
* config/alpha/elf.h (MAX_OFILE_ALIGNMENT): Remove.
From-SVN: r187095
Diffstat (limited to 'gcc/config/alpha')
-rw-r--r-- | gcc/config/alpha/elf.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/config/alpha/elf.h b/gcc/config/alpha/elf.h index 70be527..a7d04f2 100644 --- a/gcc/config/alpha/elf.h +++ b/gcc/config/alpha/elf.h @@ -67,21 +67,6 @@ do { \ ASM_OUTPUT_ALIGNED_LOCAL (FILE, NAME, SIZE, ALIGN); \ } while (0) -/* The biggest alignment supported by ELF in bits. 32-bit ELF - supports section alignment up to (0x80000000 * 8), while - 64-bit ELF supports (0x8000000000000000 * 8). If this macro - is not defined, the default is the largest alignment supported - by 32-bit ELF and representable on a 32-bit host. Use this - macro to limit the alignment which can be specified using - the `__attribute__ ((aligned (N)))' construct. - - This value is really 2^63. Since gcc figures the alignment in bits, - we could only potentially get to 2^60 on suitable hosts. Due to other - considerations in varasm, we must restrict this to what fits in an int. */ - -#undef MAX_OFILE_ALIGNMENT -#define MAX_OFILE_ALIGNMENT (((unsigned int) 1 << 28) * 8) - #undef BSS_SECTION_ASM_OP #define BSS_SECTION_ASM_OP "\t.section\t.bss" #undef SBSS_SECTION_ASM_OP |