mirror of git://gcc.gnu.org/git/gcc.git
i386.c (has_dispatch): Use TARGET_BDVER1 and TARGET_BDVER2 defines where appropriate.
* config/i386/i386.c (has_dispatch): Use TARGET_BDVER1 and TARGET_BDVER2 defines where appropriate. From-SVN: r187276
This commit is contained in:
parent
ca9daea1ef
commit
536b0cb7af
|
@ -1,3 +1,8 @@
|
||||||
|
2012-05-08 Uros Bizjak <ubizjak@gmail.com>
|
||||||
|
|
||||||
|
* config/i386/i386.c (has_dispatch): Use TARGET_BDVER1 and
|
||||||
|
TARGET_BDVER2 defines where appropriate.
|
||||||
|
|
||||||
2012-05-07 Eric Botcazou <ebotcazou@adacore.com>
|
2012-05-07 Eric Botcazou <ebotcazou@adacore.com>
|
||||||
|
|
||||||
* configure.ac (PLUGIN_LD): Rename into...
|
* configure.ac (PLUGIN_LD): Rename into...
|
||||||
|
@ -48,9 +53,8 @@
|
||||||
2012-05-07 Jakub Jelinek <jakub@redhat.com>
|
2012-05-07 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
PR tree-optimization/53239
|
PR tree-optimization/53239
|
||||||
* tree-vrp.c (get_value_range): Set VR of
|
* tree-vrp.c (get_value_range): Set VR of SSA_NAME_IS_DEFAULT_DEF
|
||||||
SSA_NAME_IS_DEFAULT_DEF of DECL_BY_REFERENCE RESULT_DECL
|
of DECL_BY_REFERENCE RESULT_DECL to nonnull.
|
||||||
to nonnull.
|
|
||||||
|
|
||||||
2012-05-07 Richard Guenther <rguenther@suse.de>
|
2012-05-07 Richard Guenther <rguenther@suse.de>
|
||||||
|
|
||||||
|
|
|
@ -39242,7 +39242,7 @@ do_dispatch (rtx insn, int mode)
|
||||||
static bool
|
static bool
|
||||||
has_dispatch (rtx insn, int action)
|
has_dispatch (rtx insn, int action)
|
||||||
{
|
{
|
||||||
if ((ix86_tune == PROCESSOR_BDVER1 || ix86_tune == PROCESSOR_BDVER2)
|
if ((TARGET_BDVER1 || TARGET_BDVER2)
|
||||||
&& flag_dispatch_scheduler)
|
&& flag_dispatch_scheduler)
|
||||||
switch (action)
|
switch (action)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue