This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

sh.opt typo fix.


Hi all

I found a typo in sh.opt and fix it.

--Liu
From 16010419db714eae298f8b7c4726eb75383bed78 Mon Sep 17 00:00:00 2001
From: Jia Liu <proljc@gmail.com>
Date: Mon, 29 Aug 2011 05:25:19 +0800
Subject: [PATCH] sh_dot_opt big endian typo fix

---
 gcc/ChangeLog        |    4 ++++
 gcc/config/sh/sh.opt |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 56397af..0996e08 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2011-08-29  Jia Liu  <proljc@gmail.com>
+
+	* config/sh/sh.opt (mb): Typo fix.
+
 2011-08-28  Mikael Pettersson  <mikpe@it.uu.se>
 
 	PR bootstrap/50218
diff --git a/gcc/config/sh/sh.opt b/gcc/config/sh/sh.opt
index e94f53a..9471596 100644
--- a/gcc/config/sh/sh.opt
+++ b/gcc/config/sh/sh.opt
@@ -210,7 +210,7 @@ Target Report Mask(ADJUST_UNROLL) Condition(SUPPORT_ANY_SH5)
 Throttle unrolling to avoid thrashing target registers unless the unroll benefit outweighs this
 
 mb
-Target Report RejectNegative InverseMask(LITTLE_ENDIAN)
+Target Report RejectNegative InverseMask(BIG_ENDIAN)
 Generate code in big endian mode
 
 mbigtable
-- 
1.7.4.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]