Commit 52f26be4 by Richard Guenther Committed by Richard Biener

re PR middle-end/51436 (ICE(segfault) in gimplify_and_update_call_from_tree gimple-fold.c:603)

2011-12-06  Richard Guenther  <rguenther@suse.de>

	PR middle-end/51436
	* gimple-fold.c (gimplify_and_update_call_from_tree): Guard
	vdef check for the fact we do not have virtual operands when
	not optimizing.

	* g++.dg/torture/pr51436.C: New testcase.

From-SVN: r182045
parent b55eb410
2011-12-06 Richard Guenther <rguenther@suse.de> 2011-12-06 Richard Guenther <rguenther@suse.de>
PR middle-end/51436
* gimple-fold.c (gimplify_and_update_call_from_tree): Guard
vdef check for the fact we do not have virtual operands when
not optimizing.
2011-12-06 Richard Guenther <rguenther@suse.de>
PR tree-optimization/51245 PR tree-optimization/51245
* tree-ssa-sccvn.c (vn_reference_lookup_or_insert_constant_for_pieces): * tree-ssa-sccvn.c (vn_reference_lookup_or_insert_constant_for_pieces):
New function. New function.
...@@ -600,7 +600,7 @@ gimplify_and_update_call_from_tree (gimple_stmt_iterator *si_p, tree expr) ...@@ -600,7 +600,7 @@ gimplify_and_update_call_from_tree (gimple_stmt_iterator *si_p, tree expr)
else else
vdef = make_ssa_name (gimple_vop (cfun), new_stmt); vdef = make_ssa_name (gimple_vop (cfun), new_stmt);
gimple_set_vdef (new_stmt, vdef); gimple_set_vdef (new_stmt, vdef);
if (TREE_CODE (vdef) == SSA_NAME) if (vdef && TREE_CODE (vdef) == SSA_NAME)
SSA_NAME_DEF_STMT (vdef) = new_stmt; SSA_NAME_DEF_STMT (vdef) = new_stmt;
laststore = new_stmt; laststore = new_stmt;
} }
......
2011-12-06 Richard Guenther <rguenther@suse.de> 2011-12-06 Richard Guenther <rguenther@suse.de>
PR middle-end/51436
* g++.dg/torture/pr51436.C: New testcase.
2011-12-06 Richard Guenther <rguenther@suse.de>
PR tree-optimization/51245 PR tree-optimization/51245
* gcc.dg/torture/pr51245.c: New testcase. * gcc.dg/torture/pr51245.c: New testcase.
......
/* { dg-do compile } */
typedef __SIZE_TYPE__ size_t;
extern "C" void *memcpy (void *, __const void *, size_t);
template < class Dest, class Source > struct BitCastHelper {
static Dest cast (const Source & source) __attribute__ ((always_inline)) {
Dest dest;
memcpy (0, &source, sizeof dest);
}
};
template < class Dest, class Source > Dest BitCast (Source)
{
BitCastHelper < Dest, Source >::cast (0);
}
class MaybeObject
{
};
class Object:MaybeObject
{
public:
static Object *cast (Object *) {
}
};
class HeapObject:public Object
{
};
class String:public HeapObject
{
};
class ExternalString:public String
{
};
class ExternalTwoByteString:public ExternalString
{
};
template < typename T > class Handle
{
public:
Handle () {
}
T *operator* () const;
template < class S > static Handle < T > cast (Handle < S > that) {
T::cast (*that);
}
T **location_;
};
template < typename T > T * Handle < T >::operator* () const
{
*BitCast < T ** >(location_);
}
void
TestCharacterStream ()
{
Handle < String > uc16_string;
Handle < ExternalTwoByteString >::cast (uc16_string);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment