Fix default cpu selection
From-SVN: r25602
This commit is contained in:
parent
6fb2c05a1b
commit
1323d53a04
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Fri Mar 5 11:36:11 1999 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
|
* config/arm/arm.c (arm_override_options): Change default target
|
||||||
|
cpu selection so that enabling TARGET_APCS_32 does not override
|
||||||
|
default target CPU.
|
||||||
|
|
||||||
Fri Mar 5 19:26:23 1999 J"orn Rennecke <amylaar@cygnus.co.uk>
|
Fri Mar 5 19:26:23 1999 J"orn Rennecke <amylaar@cygnus.co.uk>
|
||||||
|
|
||||||
* sh.h (SLOW_BYTE_ACCESS): Define to 1.
|
* sh.h (SLOW_BYTE_ACCESS): Define to 1.
|
||||||
|
|
|
@ -292,9 +292,7 @@ arm_override_options ()
|
||||||
target_flags |= ARM_FLAG_APCS_32;
|
target_flags |= ARM_FLAG_APCS_32;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (TARGET_APCS_32)
|
if (! TARGET_APCS_32)
|
||||||
sought |= FL_MODE32;
|
|
||||||
else
|
|
||||||
sought |= FL_MODE26;
|
sought |= FL_MODE26;
|
||||||
|
|
||||||
if (sought != 0)
|
if (sought != 0)
|
||||||
|
|
Loading…
Add table
Reference in a new issue