diff -Naur gcc-4.2.4.orig/gcc/config/rs6000/rs6000.c gcc-4.2.4/gcc/config/rs6000/rs6000.c
--- gcc-4.2.4.orig/gcc/config/rs6000/rs6000.c	2007-09-01 11:28:30.000000000 -0400
+++ gcc-4.2.4/gcc/config/rs6000/rs6000.c	2009-05-08 12:44:44.000000000 -0400
@@ -164,9 +164,15 @@
 /* Whether -mabi=altivec has appeared.  */
 int rs6000_altivec_abi;
 
+/* Nonzero if we want SPE SIMD instructions.  */
+int rs6000_spe;
+
 /* Nonzero if we want SPE ABI extensions.  */
 int rs6000_spe_abi;
 
+/* Nonzero to use isel instructions.  */
+int rs6000_isel;
+
 /* Nonzero if floating point operations are done in the GPRs.  */
 int rs6000_float_gprs = 0;
 
@@ -1776,11 +1782,21 @@
       rs6000_parse_yes_no_option ("vrsave", arg, &(TARGET_ALTIVEC_VRSAVE));
       break;
 
+    case OPT_misel:
+      rs6000_explicit_options.isel = true;
+      rs6000_isel = value;
+      break;
+
     case OPT_misel_:
       rs6000_explicit_options.isel = true;
       rs6000_parse_yes_no_option ("isel", arg, &(rs6000_isel));
       break;
 
+    case OPT_mspe:
+      rs6000_explicit_options.spe = true;
+      rs6000_spe = value;
+      break;
+
     case OPT_mspe_:
       rs6000_explicit_options.spe = true;
       rs6000_parse_yes_no_option ("spe", arg, &(rs6000_spe));
diff -Naur gcc-4.2.4.orig/gcc/config/rs6000/rs6000.h gcc-4.2.4/gcc/config/rs6000/rs6000.h
--- gcc-4.2.4.orig/gcc/config/rs6000/rs6000.h	2007-09-01 11:28:30.000000000 -0400
+++ gcc-4.2.4/gcc/config/rs6000/rs6000.h	2009-05-08 12:44:44.000000000 -0400
@@ -295,6 +295,8 @@
 extern int rs6000_ieeequad;
 extern int rs6000_altivec_abi;
 extern int rs6000_spe_abi;
+extern int rs6000_spe;
+extern int rs6000_isel;
 extern int rs6000_float_gprs;
 extern int rs6000_alignment_flags;
 extern const char *rs6000_sched_insert_nops_str;
diff -Naur gcc-4.2.4.orig/gcc/config/rs6000/rs6000.opt gcc-4.2.4/gcc/config/rs6000/rs6000.opt
--- gcc-4.2.4.orig/gcc/config/rs6000/rs6000.opt	2007-09-01 11:28:30.000000000 -0400
+++ gcc-4.2.4/gcc/config/rs6000/rs6000.opt	2009-05-08 12:44:44.000000000 -0400
@@ -178,7 +178,7 @@
 -mvrsave=yes/no	Deprecated option.  Use -mvrsave/-mno-vrsave instead
 
 misel
-Target Var(rs6000_isel)
+Target
 Generate isel instructions
 
 misel=
@@ -186,7 +186,7 @@
 -misel=yes/no	Deprecated option.  Use -misel/-mno-isel instead
 
 mspe
-Target Var(rs6000_spe)
+Target
 Generate SPE SIMD instructions on E500
 
 mspe=
