diff options
author | pthomas <pthomas@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-27 02:26:23 +0000 |
---|---|---|
committer | pthomas <pthomas@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-27 02:26:23 +0000 |
commit | ef7b064fa2d24cf47e51413fe827eee52f1a59b0 (patch) | |
tree | 96359c9e7d2f56ec3735ed3377047a2227a37041 /gcc/config/h8300 | |
parent | e4043909700cbd309e7b74ba0d91586ec35a98bf (diff) | |
download | gcc-ef7b064fa2d24cf47e51413fe827eee52f1a59b0.tar.gz |
2000-06-27 Philipp Thomas <pthomas@suse.de>
* 1750a.h: Mark help strings for options/switches for translation.
* a29k.h: Likewise.
* alpha.h: Likewise.
* arm.h: Likewise.
* pe.h: Likewise.
* riscix.h: Likewise.
* c4x.h: Likewise.
* clipper.h: Likewise.
* convex.h: Likewise.
* elxsi.h: Likewise.
* fr30.h: Likewise.
* fx80.h: Likewise.
* h8300.h: Likewise.
* i370.h: Likewise.
* cygwin.h: Likewise.
* dgux.h: Likewise.
* djgpp.h: Likewise.
* i386.h: Likewise.
* osf1elf.h: Likewise.
* osfrose.h: Likewise.
* sco5.h: Likewise.
* win32.h: Likewise.
* i860.h: Likewise.
* paragon.h: Likewise.
* i960.h: Likewise.
* ia64.h: Likewise.
* m32r.h: Likewise.
* mcore.h: Likewise.
* mips.h: Likewise.
* mn10300.h: Likewise.
* ns32k.h: Likewise.
* pdp11.h: Likewise.
* pj.h: Likewise.
* aix.h: Likewise.
* aix41.h: Likewise.
* aix43.h: Likewise.
* beos.h: Likewise.
* rs6000.h: Likewise.
* sysv4.h: Likewise.
* linux.h: Likewise.
* linux64.h: Likewise.
* sp64-elf.h: Likewise.
* sparc.h: Likewise.
* splet.h: Likewise.
* v850.h: Likewise.
* convex.h (TARGET_SWITCHES): Provide descriptions and mark them
for translation.
* sp86x-aout.h: Remove bogus first definition of SUBTARGET_SWITCHES.
Properly document option and mark for translation.
* sp86x-elf.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34724 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/h8300')
-rw-r--r-- | gcc/config/h8300/h8300.h | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 7fdedf8e3cd..54edea871d6 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -99,18 +99,21 @@ extern int target_flags; An empty string NAME is used to identify the default VALUE. */ #define TARGET_SWITCHES \ - { {"s", 1, "Generate H8/S code"}, \ - {"no-s", -1, "Do not generate H8/S code"}, \ - {"int32", 8, "Make integers 32 bits wide"}, \ + { {"s", 1, N_("Generate H8/S code")}, \ + {"no-s", -1, N_("Do not generate H8/S code")}, \ + {"int32", 8, N_("Make integers 32 bits wide")}, \ {"addresses", 64, NULL}, \ - {"quickcall", 128, "Use registers for argument passing"}, \ - {"no-quickcall", -128, "Do not use registers for argument passing"},\ - {"slowbyte", 256, "Consider access to byte sized memory slow"},\ - {"relax", 1024, "Enable linker relaxing"}, \ + {"quickcall", 128, \ + N_("Use registers for argument passing")}, \ + {"no-quickcall", -128, \ + N_("Do not use registers for argument passing")}, \ + {"slowbyte", 256, \ + N_("Consider access to byte sized memory slow")}, \ + {"relax", 1024, N_("Enable linker relaxing")}, \ {"rtl-dump", 2048, NULL}, \ - {"h", 4096, "Generate H8/300H code"}, \ - {"no-h", -4096, "Do not generate H8/300H code"}, \ - {"align-300", 8192, "Use H8/300 alignment rules"}, \ + {"h", 4096, N_("Generate H8/300H code")}, \ + {"no-h", -4096, N_("Do not generate H8/300H code")}, \ + {"align-300", 8192, N_("Use H8/300 alignment rules")}, \ { "", TARGET_DEFAULT, NULL}} #ifdef IN_LIBGCC2 |