diff options
author | Richard Earnshaw <rearnsha@arm.com> | 2003-04-23 16:39:30 +0000 |
---|---|---|
committer | Richard Earnshaw <rearnsha@gcc.gnu.org> | 2003-04-23 16:39:30 +0000 |
commit | 7052a0999ee948e99e03cacf852998e7caac4fba (patch) | |
tree | e399ba0b2aa55d2f338c10fda091121c2810b084 /gcc | |
parent | 4223f82fbc44740367239b334e47ce0865d5b2d1 (diff) | |
download | gcc-7052a0999ee948e99e03cacf852998e7caac4fba.zip gcc-7052a0999ee948e99e03cacf852998e7caac4fba.tar.gz gcc-7052a0999ee948e99e03cacf852998e7caac4fba.tar.bz2 |
* arm.h (TARGET_OPTIONS): Add value field.
From-SVN: r65999
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/arm/arm.h | 14 |
2 files changed, 11 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0c680e9..22312ac 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-04-23 Richard Earnshaw <rearnsha@arm.com> + + * arm.h (TARGET_OPTIONS): Add value field. + 2003-04-23 Mark Mitchell <mark@codesourcery.com> * doc/extend.texi: Remove duplicate 2003 copyright date. diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 8b02b21..874cf81 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -512,17 +512,17 @@ Unrecognized value in TARGET_CPU_DEFAULT. #define TARGET_OPTIONS \ { \ {"cpu=", & arm_select[0].string, \ - N_("Specify the name of the target CPU") }, \ + N_("Specify the name of the target CPU"), 0}, \ {"arch=", & arm_select[1].string, \ - N_("Specify the name of the target architecture") }, \ - {"tune=", & arm_select[2].string, "" }, \ - {"fpe=", & target_fp_name, "" }, \ + N_("Specify the name of the target architecture"), 0}, \ + {"tune=", & arm_select[2].string, "", 0}, \ + {"fpe=", & target_fp_name, "" , 0}, \ {"fp=", & target_fp_name, \ - N_("Specify the version of the floating point emulator") }, \ + N_("Specify the version of the floating point emulator"), 0},\ {"structure-size-boundary=", & structure_size_string, \ - N_("Specify the minimum bit alignment of structures") }, \ + N_("Specify the minimum bit alignment of structures"), 0}, \ {"pic-register=", & arm_pic_register_string, \ - N_("Specify the register to be used for PIC addressing") } \ + N_("Specify the register to be used for PIC addressing"), 0} \ } struct arm_cpu_select |