Commit 5c20baf1 by Martin Jambor Committed by Martin Jambor

re PR middle-end/43835 (IPA-SRA doesn't rewrite attributes)

2010-04-23  Martin Jambor  <mjambor@suse.cz>

	PR middle-end/43835
	* tree-sra.c (ipa_sra_preliminary_function_checks): Check that the
	function does not have type attributes.

	* testsuite/gcc.c-torture/execute/pr43835.c: New test.

From-SVN: r158667
parent c67f69a3
2010-04-23 Martin Jambor <mjambor@suse.cz>
PR middle-end/43835
* tree-sra.c (ipa_sra_preliminary_function_checks): Check that the
function does not have type attributes.
2010-04-23 Richard Guenther <rguenther@suse.de>
PR lto/42653
......
2010-04-23 Martin Jambor <mjambor@suse.cz>
PR middle-end/43835
* gcc.c-torture/execute/pr43835.c: New test.
2010-04-23 Richard Guenther <rguenther@suse.de>
PR lto/42653
......
struct PMC {
unsigned flags;
};
typedef struct Pcc_cell
{
struct PMC *p;
long bla;
long type;
} Pcc_cell;
extern void abort ();
extern void Parrot_gc_mark_PMC_alive_fun(int * interp, struct PMC *pmc)
__attribute__((noinline));
void Parrot_gc_mark_PMC_alive_fun (int * interp, struct PMC *pmc)
{
abort ();
}
static void mark_cell(int * interp, Pcc_cell *c)
__attribute__((__nonnull__(1)))
__attribute__((__nonnull__(2)))
__attribute__((noinline));
static void
mark_cell(int * interp, Pcc_cell *c)
{
if (c->type == 4 && c->p
&& !(c->p->flags & (1<<18)))
Parrot_gc_mark_PMC_alive_fun(interp, c->p);
}
void foo(int * interp, Pcc_cell *c);
void
foo(int * interp, Pcc_cell *c)
{
mark_cell(interp, c);
}
int main()
{
int i;
Pcc_cell c;
c.p = 0;
c.bla = 42;
c.type = 4;
foo (&i, &c);
return 0;
}
......@@ -4162,6 +4162,9 @@ ipa_sra_preliminary_function_checks (struct cgraph_node *node)
return false;
}
if (TYPE_ATTRIBUTES (TREE_TYPE (node->decl)))
return false;
return true;
}
......
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