This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [ColdFire 2/63] Use TUNE_* macros instead of TARGET_* macros
Hi,
On Wed, 10 Jan 2007, Richard Sandiford wrote:
> @@ -618,13 +618,13 @@ (define_insn "movsi_const0"
> if (ADDRESS_REG_P (operands[0]))
> {
> /* On the '040, 'subl an,an' takes 2 clocks while lea takes only 1 */
> - if (!TARGET_68040 && !TARGET_68060)
> + if (!TUNE_68040 && !TUNE_68060)
> return "sub%.l %0,%0";
> else
Hmm, the comment is correct, but the test doesn't quite match...
bye, Roman