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 PR tree-optimization/32713


This is the build failure of the Ada library on x86.

Tested on i586-suse-linux, applied to mainline as obvious.


2007-07-11  Eric Botcazou  <ebotcazou@adacore.com>

        PR tree-optimization/32713
	* tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle REAL_CST.


-- 
Eric Botcazou
Index: tree-ssa-sccvn.c
===================================================================
--- tree-ssa-sccvn.c	(revision 126545)
+++ tree-ssa-sccvn.c	(working copy)
@@ -529,6 +529,7 @@ copy_reference_ops_from_ref (tree ref, V
 	case INTEGER_CST:
 	case COMPLEX_CST:
 	case VECTOR_CST:
+	case REAL_CST:
 	case VALUE_HANDLE:
 	case VAR_DECL:
 	case PARM_DECL:

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