diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2012-05-08 08:56:11 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2012-05-08 08:56:11 +0200 |
commit | 536b0cb7af779dc7e417b2f91d9ca32382d3d203 (patch) | |
tree | 012cd32f087d712d3e7cf95e2e82a07320a3f805 /gcc/config | |
parent | ca9daea1efc5e003bf4137bb5a0ea814191b9de0 (diff) | |
download | gcc-536b0cb7af779dc7e417b2f91d9ca32382d3d203.zip gcc-536b0cb7af779dc7e417b2f91d9ca32382d3d203.tar.gz gcc-536b0cb7af779dc7e417b2f91d9ca32382d3d203.tar.bz2 |
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
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 953b668..ecf4d6e 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -39242,7 +39242,7 @@ do_dispatch (rtx insn, int mode) static bool has_dispatch (rtx insn, int action) { - if ((ix86_tune == PROCESSOR_BDVER1 || ix86_tune == PROCESSOR_BDVER2) + if ((TARGET_BDVER1 || TARGET_BDVER2) && flag_dispatch_scheduler) switch (action) { |