OSDN Git Service

* config/rs6000/rs6000.h (CONSTANT_ALIGNMENT): Use STRICT_ALIGNMENT
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 24 Feb 2008 02:43:13 +0000 (02:43 +0000)
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 24 Feb 2008 02:43:13 +0000 (02:43 +0000)
        instead of TARGET_STRICT_ALIGN.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132584 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/rs6000/rs6000.h

index 3a2296d..f3d97e6 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-23  David Edelsohn  <edelsohn@gnu.org>
+
+       * config/rs6000/rs6000.h (CONSTANT_ALIGNMENT): Use STRICT_ALIGNMENT
+       instead of TARGET_STRICT_ALIGN.
+
 2008-02-23  Joseph Myers  <joseph@codesourcery.com>
 
        * explow.c (memory_address): Assert that the generated address is
index f5bf7da..0ab3b1d 100644 (file)
@@ -596,7 +596,7 @@ extern enum rs6000_nop_insertion rs6000_sched_insert_nops;
    Make vector constants quadword aligned.  */
 #define CONSTANT_ALIGNMENT(EXP, ALIGN)                           \
   (TREE_CODE (EXP) == STRING_CST                                \
-   && (TARGET_STRICT_ALIGN || !optimize_size)                    \
+   && (STRICT_ALIGNMENT || !optimize_size)                       \
    && (ALIGN) < BITS_PER_WORD                                    \
    ? BITS_PER_WORD                                               \
    : (ALIGN))