Fix bug where GCC thought athlon-tbird had SSE support.
This commit is contained in:
parent
4321eae6b7
commit
8d85d711c3
@ -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) \
|
||||
|
Loading…
Reference in New Issue
Block a user