aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorIain Sandoe <iain@sandoe.co.uk>2020-12-31 09:31:04 +0000
committerIain Sandoe <iain@sandoe.co.uk>2021-01-02 19:56:19 +0000
commit5282e22f0e7f0d0d5ca2bdc4a952c0d383300eba (patch)
tree4627ee6ec6ae085a2eab0602e2ff9bc51a0cf4a4 /gcc
parentac6ecec4b328daf0583a125d647f9a5836fa0023 (diff)
downloadgcc-5282e22f0e7f0d0d5ca2bdc4a952c0d383300eba.zip
gcc-5282e22f0e7f0d0d5ca2bdc4a952c0d383300eba.tar.gz
gcc-5282e22f0e7f0d0d5ca2bdc4a952c0d383300eba.tar.bz2
Darwin, Simplify headers 3/5 : Delete dead code.
Darwin defines ASM_OUTPUT_ALIGNED_DECL_COMMON which is used in preference to ASM_OUTPUT_ALIGNED_COMMON, which makes the latter definition dead code. Remove this. gcc/ChangeLog: * config/darwin9.h (ASM_OUTPUT_ALIGNED_COMMON): Delete.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/darwin9.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/config/darwin9.h b/gcc/config/darwin9.h
index 125a35e..92a77ee 100644
--- a/gcc/config/darwin9.h
+++ b/gcc/config/darwin9.h
@@ -18,16 +18,5 @@ You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
-#undef ASM_OUTPUT_ALIGNED_COMMON
-#define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
- do { \
- unsigned HOST_WIDE_INT _new_size = (SIZE); \
- fprintf ((FILE), "\t.comm "); \
- assemble_name ((FILE), (NAME)); \
- if (_new_size == 0) _new_size = 1; \
- fprintf ((FILE), "," HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
- _new_size, floor_log2 ((ALIGN) / BITS_PER_UNIT)); \
- } while (0)
-
#undef DEF_MIN_OSX_VERSION
#define DEF_MIN_OSX_VERSION "10.5"