Author: qboosh                       Date: Thu Nov 15 20:37:12 2007 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- fix ICE caught by gettext on mingw32 or cygwin

---- Files affected:
SOURCES:
   gcc-4.1-pr29826.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/gcc-4.1-pr29826.patch
diff -u /dev/null SOURCES/gcc-4.1-pr29826.patch:1.1
--- /dev/null   Thu Nov 15 21:37:12 2007
+++ SOURCES/gcc-4.1-pr29826.patch       Thu Nov 15 21:37:07 2007
@@ -0,0 +1,36 @@
+2006-10-04  Richard Henderson  <[EMAIL PROTECTED]>
+           Jakub Jelinek  <[EMAIL PROTECTED]>
+
+       * tree-ssa-address.c (gen_addr_rtx): Check for const-ness of the
+       address before wrapping in CONST.
+
+Index: tree-ssa-address.c
+===================================================================
+--- tree-ssa-address.c (revision 124014)
++++ tree-ssa-address.c (working copy)
+@@ -1,5 +1,5 @@
+ /* Memory address lowering and addressing mode selection.
+-   Copyright (C) 2004 Free Software Foundation, Inc.
++   Copyright (C) 2004, 2006 Free Software Foundation, Inc.
+    
+ This file is part of GCC.
+    
+@@ -134,10 +134,15 @@
+       act_elem = symbol;
+       if (offset)
+       {
+-        act_elem = gen_rtx_CONST (Pmode,
+-                                  gen_rtx_PLUS (Pmode, act_elem, offset));
++        act_elem = gen_rtx_PLUS (Pmode, act_elem, offset);
++
+         if (offset_p)
+-          *offset_p = &XEXP (XEXP (act_elem, 0), 1);
++          *offset_p = &XEXP (act_elem, 1);
++
++        if (GET_CODE (symbol) == SYMBOL_REF
++            || GET_CODE (symbol) == LABEL_REF
++            || GET_CODE (symbol) == CONST)
++          act_elem = gen_rtx_CONST (Pmode, act_elem);
+       }
+ 
+       if (*addr)
================================================================
_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to