* arm.c (arm_override_options): Correct fall-back code to use
SUBTARGET_CPU_DEFAULT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@163782
138bc75d-0d04-0410-961f-
82ee72b054a4
+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>
* config/arm/neon.md (UNSPEC_VCLE, UNSPEC_VCLT): New constants for
arm_selected_cpu = &all_cores[SUBTARGET_CPU_DEFAULT];
#endif
/* Default to ARM6. */
- if (arm_selected_cpu->name)
+ if (!arm_selected_cpu->name)
arm_selected_cpu = &all_cores[arm6];
}