Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/gpl3/gcc/dist/gcc/config/i386 No need to check both...



details:   https://anonhg.NetBSD.org/src/rev/40915f163519
branches:  trunk
changeset: 783584:40915f163519
user:      dsl <dsl%NetBSD.org@localhost>
date:      Sun Dec 30 20:16:58 2012 +0000

description:
No need to check both TARGET_64BIT and ix86_preferred_stack_boundary >= 64,
if the former is true the latter is also true.

diffstat:

 external/gpl3/gcc/dist/gcc/config/i386/i386.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r f9739469e0f8 -r 40915f163519 external/gpl3/gcc/dist/gcc/config/i386/i386.c
--- a/external/gpl3/gcc/dist/gcc/config/i386/i386.c     Sun Dec 30 17:37:13 2012 +0000
+++ b/external/gpl3/gcc/dist/gcc/config/i386/i386.c     Sun Dec 30 20:16:58 2012 +0000
@@ -20222,7 +20222,7 @@
           && TYPE_FIELDS (type))
     {
       if (DECL_MODE (TYPE_FIELDS (type)) == DFmode && align < 64
-          && (TARGET_64BIT || ix86_preferred_stack_boundary >= 64))
+          && ix86_preferred_stack_boundary >= 64)
        return 64;
       if (ALIGN_MODE_128 (DECL_MODE (TYPE_FIELDS (type))) && align < 128)
        return 128;
@@ -20232,7 +20232,7 @@
     {
 
       if (TYPE_MODE (type) == DFmode && align < 64
-          && (TARGET_64BIT || ix86_preferred_stack_boundary >= 64))
+          && ix86_preferred_stack_boundary >= 64)
        return 64;
       if (ALIGN_MODE_128 (TYPE_MODE (type)) && align < 128)
        return 128;



Home | Main Index | Thread Index | Old Index