aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/darwin.c
diff options
context:
space:
mode:
authorTrevor Saunders <tbsaunde+gcc@tbsaunde.org>2015-05-24 00:32:31 +0000
committerTrevor Saunders <tbsaunde@gcc.gnu.org>2015-05-24 00:32:31 +0000
commitd0b2266a7747f97b6eebe8b9de064d735b568ef2 (patch)
tree0f7ebd2e79975597ab369595601f0010e6317dc9 /gcc/config/darwin.c
parenta63670fe10d5716e34d2078c6ab1eb7853e000c2 (diff)
downloadgcc-d0b2266a7747f97b6eebe8b9de064d735b568ef2.zip
gcc-d0b2266a7747f97b6eebe8b9de064d735b568ef2.tar.gz
gcc-d0b2266a7747f97b6eebe8b9de064d735b568ef2.tar.bz2
always define HAVE_lo_sum
gcc/ChangeLog: 2015-05-23 Trevor Saunders <tbsaunde+gcc@tbsaunde.org> * combine.c (find_split_point): Check the value of HAVE_lo_sum instead of if it is defined. (combine_simplify_rtx): Likewise. * lra-constraints.c (process_address_1): Likewise. * config/darwin.c: Adjust. * genconfig.c (main): Always define HAVE_lo_sum. From-SVN: r223619
Diffstat (limited to 'gcc/config/darwin.c')
-rw-r--r--gcc/config/darwin.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c
index 5ea7088..ea7eec1 100644
--- a/gcc/config/darwin.c
+++ b/gcc/config/darwin.c
@@ -149,8 +149,7 @@ int generating_for_darwin_version ;
section * darwin_sections[NUM_DARWIN_SECTIONS];
/* While we transition to using in-tests instead of ifdef'd code. */
-#ifndef HAVE_lo_sum
-#define HAVE_lo_sum 0
+#if !HAVE_lo_sum
#define gen_macho_high(a,b) (a)
#define gen_macho_low(a,b,c) (a)
#endif