diff options
author | Andreas Schwab <schwab@suse.de> | 2003-01-13 15:38:58 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2003-01-13 15:38:58 +0000 |
commit | 38a3dbbb3045ee554fa0703ffb92c57b25ca74bc (patch) | |
tree | efb105f1a95d3537542f47465f2b00ef0a626265 /gcc | |
parent | 98dc53e3af687b0afd8aad75389a6b1aef919eae (diff) | |
download | gcc-38a3dbbb3045ee554fa0703ffb92c57b25ca74bc.zip gcc-38a3dbbb3045ee554fa0703ffb92c57b25ca74bc.tar.gz gcc-38a3dbbb3045ee554fa0703ffb92c57b25ca74bc.tar.bz2 |
sysv4.h (ASM_OUTPUT_ALIGNED_LOCAL): Output type directive.
* config/rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_LOCAL): Output type
directive.
From-SVN: r61252
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/sysv4.h | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 32e95b1..c60e555 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-01-13 Andreas Schwab <schwab@suse.de> + + * config/rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_LOCAL): Output type + directive. + 2003-01-13 Kazu Hirata <kazu@cs.umass.edu> * config/h8300/h8300.md (*andsi3_lshift_n_sb): New. diff --git a/gcc/config/rs6000/sysv4.h b/gcc/config/rs6000/sysv4.h index b10649d..b5a7f7b 100644 --- a/gcc/config/rs6000/sysv4.h +++ b/gcc/config/rs6000/sysv4.h @@ -1,5 +1,5 @@ /* Target definitions for GNU compiler for PowerPC running System V.4 - Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 + Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. Contributed by Cygnus Support. @@ -682,6 +682,7 @@ do { \ assemble_name ((FILE), (NAME)); \ fprintf ((FILE), ",%u,%u\n", (SIZE), (ALIGN) / BITS_PER_UNIT); \ } \ + ASM_OUTPUT_TYPE_DIRECTIVE (FILE, NAME, "object"); \ } while (0) /* Describe how to emit uninitialized external linkage items. */ |