diff options
author | Kyrylo Tkachov <kyrylo.tkachov@arm.com> | 2014-02-10 11:25:16 +0000 |
---|---|---|
committer | Kyrylo Tkachov <ktkachov@gcc.gnu.org> | 2014-02-10 11:25:16 +0000 |
commit | e7af1c221d51f354ed7b6026a6629524fd2974d8 (patch) | |
tree | 9c1392a4a40350178865363a77a2167c2bebc260 | |
parent | 79c7de844ccc9f50c3e5ebdee6fd0afd409e2f0d (diff) | |
download | gcc-e7af1c221d51f354ed7b6026a6629524fd2974d8.zip gcc-e7af1c221d51f354ed7b6026a6629524fd2974d8.tar.gz gcc-e7af1c221d51f354ed7b6026a6629524fd2974d8.tar.bz2 |
aarch64.c (aarch64_override_options): Fix typo from coretex to cortex.
* config/aarch64/aarch64.c (aarch64_override_options): Fix typo from
coretex to cortex.
From-SVN: r207654
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/aarch64/aarch64.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 67d7c4b..be69545 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-02-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com> + + * config/aarch64/aarch64.c (aarch64_override_options): Fix typo from + coretex to cortex. + 2014-02-10 Eric Botcazou <ebotcazou@adacore.com> * ipa-devirt.c (get_polymorphic_call_info_from_invariant): Return diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c index 16c51a8..784bfa3 100644 --- a/gcc/config/aarch64/aarch64.c +++ b/gcc/config/aarch64/aarch64.c @@ -5244,7 +5244,7 @@ aarch64_override_options (void) /* If the user did not specify a processor, choose the default one for them. This will be the CPU set during configuration using - --with-cpu, otherwise it is "coretex-a53". */ + --with-cpu, otherwise it is "cortex-a53". */ if (!selected_cpu) { selected_cpu = &all_cores[TARGET_CPU_DEFAULT & 0x3f]; |