rs6000.h (CONSTANT_ALIGNMENT): Use STRICT_ALIGNMENT instead of TARGET_STRICT_ALIGN.
authorDavid Edelsohn <edelsohn@gnu.org>
Sun, 24 Feb 2008 02:43:13 +0000 (02:43 +0000)
committerDavid Edelsohn <dje@gcc.gnu.org>
Sun, 24 Feb 2008 02:43:13 +0000 (21:43 -0500)
        * config/rs6000/rs6000.h (CONSTANT_ALIGNMENT): Use STRICT_ALIGNMENT
        instead of TARGET_STRICT_ALIGN.

From-SVN: r132584

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

index 3a2296deed3cff9560a5ec8e50d9a459f10c9372..f3d97e68145922d7dd4403eb30e2ee7e4f58f3b0 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 f5bf7daac1e3e115ae8b92087942a7eee4cae7ae..0ab3b1d4c52ed3a5e11e59ac5ea6f32c418d54ea 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))