From: Uros Bizjak Date: Mon, 3 Aug 2009 15:58:55 +0000 (+0200) Subject: alpha.c (alpha_legitimate_constant_p): Reject CONST constants referencing TLS symbols. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=42a9ba1d7e12ecd8a58b0c32801601e09de7a30b;p=platform%2Fupstream%2Fgcc.git alpha.c (alpha_legitimate_constant_p): Reject CONST constants referencing TLS symbols. * config/alpha/alpha.c (alpha_legitimate_constant_p): Reject CONST constants referencing TLS symbols. From-SVN: r150372 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 965beac..04816e3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-08-03 Uros Bizjak + + * config/alpha/alpha.c (alpha_legitimate_constant_p): Reject CONST + constants referencing TLS symbols. + 2009-08-03 SUGIOKA Toshinobu * config/sh/linux-atomic.asm (ATOMIC_COMPARE_AND_SWAP): Rename @@ -29,8 +34,7 @@ 2009-08-03 Andreas Krebbel - * explow.c (promote_mode): Mark TYPE and PUNSIGNEDP as - possibly unused. + * explow.c (promote_mode): Mark TYPE and PUNSIGNEDP as possibly unused. 2009-08-02 John David Anglin diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index f250e14..fe515d4 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -2062,11 +2062,22 @@ alpha_legitimate_constant_p (rtx x) switch (GET_CODE (x)) { - case CONST: case LABEL_REF: case HIGH: return true; + case CONST: + if (GET_CODE (XEXP (x, 0)) == PLUS + && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT) + x = XEXP (XEXP (x, 0), 0); + else + return true; + + if (GET_CODE (x) != SYMBOL_REF) + return true; + + /* FALLTHRU */ + case SYMBOL_REF: /* TLS symbols are never valid. */ return SYMBOL_REF_TLS_MODEL (x) == 0;