Fix bug where GCC thought athlon-tbird had SSE support.

This commit is contained in:
David E. O'Brien 2005-07-19 21:53:22 +00:00
parent 4321eae6b7
commit 8d85d711c3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=148163

View File

@ -614,8 +614,8 @@ extern int x86_prefetch_sse;
else if (TARGET_ATHLON) \
{ \
builtin_define ("__tune_athlon__"); \
/* Only plain "athlon" lacks SSE. */ \
if (last_tune_char != 'n') \
/* Plain "athlon" & "athlon-tbird" lacks SSE. */ \
if (last_tune_char != 'n' && last_tune_char != 'd') \
builtin_define ("__tune_athlon_sse__"); \
} \
else if (TARGET_K8) \
@ -679,8 +679,8 @@ extern int x86_prefetch_sse;
{ \
builtin_define ("__athlon"); \
builtin_define ("__athlon__"); \
/* Only plain "athlon" lacks SSE. */ \
if (last_arch_char != 'n') \
/* Plain "athlon" & "athlon-tbird" lacks SSE. */ \
if (last_tune_char != 'n' && last_tune_char != 'd') \
builtin_define ("__athlon_sse__"); \
} \
else if (ix86_arch == PROCESSOR_K8) \