Commit fe7645b9 by Ryan Mansfield Committed by Richard Earnshaw

arm.c (arm_override_options): Correct fall-back code to use SUBTARGET_CPU_DEFAULT.

2010-09-02  Ryan Mansfield  <rmansfield@qnx.com>

	* arm.c (arm_override_options): Correct fall-back code to use
	SUBTARGET_CPU_DEFAULT.

From-SVN: r163782
parent 5bfc5baa
2010-09-02 Ryan Mansfield <rmansfield@qnx.com>
* arm.c (arm_override_options): Correct fall-back code to use
SUBTARGET_CPU_DEFAULT.
2010-09-02 Julian Brown <julian@codesourcery.com> 2010-09-02 Julian Brown <julian@codesourcery.com>
* config/arm/neon.md (UNSPEC_VCLE, UNSPEC_VCLT): New constants for * config/arm/neon.md (UNSPEC_VCLE, UNSPEC_VCLT): New constants for
......
...@@ -1411,7 +1411,7 @@ arm_override_options (void) ...@@ -1411,7 +1411,7 @@ arm_override_options (void)
arm_selected_cpu = &all_cores[SUBTARGET_CPU_DEFAULT]; arm_selected_cpu = &all_cores[SUBTARGET_CPU_DEFAULT];
#endif #endif
/* Default to ARM6. */ /* Default to ARM6. */
if (arm_selected_cpu->name) if (!arm_selected_cpu->name)
arm_selected_cpu = &all_cores[arm6]; arm_selected_cpu = &all_cores[arm6];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment