diff options
Diffstat (limited to 'gcc/config/rx')
-rw-r--r-- | gcc/config/rx/rx.c | 6 | ||||
-rw-r--r-- | gcc/config/rx/rx.opt | 4 | ||||
-rw-r--r-- | gcc/config/rx/t-rx | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/gcc/config/rx/rx.c b/gcc/config/rx/rx.c index 0ed4ee6..f0a97ab 100644 --- a/gcc/config/rx/rx.c +++ b/gcc/config/rx/rx.c @@ -2308,14 +2308,14 @@ rx_handle_option (struct gcc_options *opts, struct gcc_options *opts_set, return value >= 0 && value <= 4; case OPT_mcpu_: - if (strcasecmp (arg, "RX610") == 0) + if (strcmp (arg, "rx610") == 0) rx_cpu_type = RX610; - else if (strcasecmp (arg, "RX200") == 0) + else if (strcmp (arg, "rx200") == 0) { target_flags |= MASK_NO_USE_FPU; rx_cpu_type = RX200; } - else if (strcasecmp (arg, "RX600") != 0) + else if (strcmp (arg, "rx600") != 0) warning (0, "unrecognized argument '%s' to -mcpu= option", arg); break; diff --git a/gcc/config/rx/rx.opt b/gcc/config/rx/rx.opt index 35143dd..99f262c 100644 --- a/gcc/config/rx/rx.opt +++ b/gcc/config/rx/rx.opt @@ -1,5 +1,5 @@ ; Command line options for the Renesas RX port of GCC. -; Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +; Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc. ; Contributed by Red Hat. ; ; This file is part of GCC. @@ -43,7 +43,7 @@ Enable the use of RX FPU instructions. This is the default. ;--------------------------------------------------- mcpu= -Target RejectNegative Joined Var(rx_cpu_name) Report +Target RejectNegative Joined Var(rx_cpu_name) Report ToLower Specify the target RX cpu type. ;--------------------------------------------------- diff --git a/gcc/config/rx/t-rx b/gcc/config/rx/t-rx index 7990bcf..3889314 100644 --- a/gcc/config/rx/t-rx +++ b/gcc/config/rx/t-rx @@ -1,5 +1,5 @@ # Makefile fragment for building GCC for the Renesas RX target. -# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc. # Contributed by Red Hat. # # This file is part of GCC. @@ -23,7 +23,7 @@ MULTILIB_OPTIONS = m64bit-doubles nofpu mbig-endian-data MULTILIB_DIRNAMES = 64-bit-double no-fpu-libs big-endian-data -MULTILIB_MATCHES = nofpu=mnofpu nofpu=mcpu?rx200 nofpu=mcpu?RX200 +MULTILIB_MATCHES = nofpu=mnofpu nofpu=mcpu?rx200 MULTILIB_EXCEPTIONS = MULTILIB_EXTRA_OPTS = |