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]

[PATCH] fix breakage from PCH merge on ia64


The merge of the PCH branch broke builds on ia64-linux.  The name of a
local variable was changed in all but one place, leaving an undefined
identifier.  Committed as obvious.

2002-06-04  Janis Johnson  <janis187@us.ibm.com>

	* config/ia64/ia64.c (gen_thread_pointer): Fix variable name.

Index: ia64.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/ia64/ia64.c,v
retrieving revision 1.173
diff -u -p -r1.173 ia64.c
--- ia64.c	4 Jun 2002 07:09:05 -0000	1.173
+++ ia64.c	4 Jun 2002 17:54:38 -0000
@@ -1061,7 +1061,7 @@ gen_thread_pointer ()
       thread_pointer_rtx = gen_rtx_REG (Pmode, 13);
       RTX_UNCHANGING_P (thread_pointer_rtx);
     }
-  return tp;
+  return thread_pointer_rtx;
 }
 
 rtx


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