diff options
Diffstat (limited to 'gcc/config/cris')
-rw-r--r-- | gcc/config/cris/aout.h | 2 | ||||
-rw-r--r-- | gcc/config/cris/cris.h | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/gcc/config/cris/aout.h b/gcc/config/cris/aout.h index 1c925f93bcf..9939dbac54f 100644 --- a/gcc/config/cris/aout.h +++ b/gcc/config/cris/aout.h @@ -112,7 +112,7 @@ Boston, MA 02111-1307, USA. */ #undef CRIS_SUBTARGET_LONG_OPTIONS #define CRIS_SUBTARGET_LONG_OPTIONS \ {"elinux-stacksize=", &cris_elinux_stacksize_str, \ - N_("For elinux, request a specified stack-size for this program")}, \ + N_("For elinux, request a specified stack-size for this program"), 0}, \ #undef CRIS_SUBTARGET_VERSION #define CRIS_SUBTARGET_VERSION " - a.out" diff --git a/gcc/config/cris/cris.h b/gcc/config/cris/cris.h index 98a27a643b3..fceee0fbbb3 100644 --- a/gcc/config/cris/cris.h +++ b/gcc/config/cris/cris.h @@ -427,15 +427,15 @@ extern int target_flags; #define TARGET_HAS_MUL_INSNS (cris_cpu_version >= CRIS_CPU_NG) #define TARGET_OPTIONS \ - {{"cpu=", &cris_cpu_str, ""}, \ + {{"cpu=", &cris_cpu_str, "", 0}, \ {"arch=", &cris_cpu_str, \ - N_("Generate code for the specified chip or CPU version")}, \ + N_("Generate code for the specified chip or CPU version"), 0}, \ {"tune=", &cris_tune_str, \ - N_("Tune alignment for the specified chip or CPU version")}, \ + N_("Tune alignment for the specified chip or CPU version"), 0}, \ {"max-stackframe=", &cris_max_stackframe_str, \ - N_("Warn when a stackframe is larger than the specified size")}, \ + N_("Warn when a stackframe is larger than the specified size"), 0}, \ CRIS_SUBTARGET_LONG_OPTIONS \ - {"ax-stackframe=", &cris_max_stackframe_str, ""}} + {"ax-stackframe=", &cris_max_stackframe_str, "", 0} } #define CRIS_SUBTARGET_LONG_OPTIONS |