This is the mail archive of the binutils@sourceware.org mailing list for the binutils 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]

PATCH COMMITTED: Fix typo


I managed to miss bug 6585 which has a patch for an obvious typo in
gold.  Committed.

Ian


2008-06-30  Manish Singh  <yosh@gimp.org>

	PR 6585
	* symtab.cc (Symbol_table::add_undefined_symbols_from_command_line):
	Correct typo.


Index: symtab.cc
===================================================================
RCS file: /cvs/src/src/gold/symtab.cc,v
retrieving revision 1.98
diff -p -u -r1.98 symtab.cc
--- symtab.cc	8 May 2008 18:44:33 -0000	1.98
+++ symtab.cc	30 Jun 2008 18:16:20 -0000
@@ -1725,7 +1725,7 @@ Symbol_table::add_undefined_symbols_from
     {
       if (parameters->target().get_size() == 32)
 	{
-#if defined(HAVE_TARGET_32_LITTL) || defined(HAVE_TARGET_32_BIG)
+#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
 	  this->do_add_undefined_symbols_from_command_line<32>();
 #else
 	  gold_unreachable();

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