Commit 056b102d authored by dpatel's avatar dpatel
Browse files

* tree-sra.c (decide_block_copy): Disable scalarization of sub-elements.

     * g++.dg/tree-sra/ssa-sra-3.C: New test.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97301 138bc75d-0d04-0410-961f-82ee72b054a4
parent f4d6cd20
2005-03-29 Devang Patel <dpatel@apple.com>
* tree-sra.c (decide_block_copy): Disable scalarization of sub-elements.
2005-03-30 Stuart Hastings <stuart@apple.com>
Dale Johannesen <dalej@apple.com>
......
2005-03-30 Devang Patel <dpatel@apple.com>
* g++.dg/tree-sra/ssa-sra-3.C: New test.
2005-03-30 Dale Johannesen <dalej@apple.com>
 
* gcc.dg/20020919-1.c: Remove unnecessary conditional.
......
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* Test check use_block_copy bit propagation in sra element hierarchy. */
typedef unsigned char UINT8 ;
typedef unsigned int UINT ;
class C4
{
public:
int xy[2];
};
class C3
{
public:
inline void
Reset()
{
C4 const mvMax = {0x7fff, 0x7fff};
m42(0,mvMax);
m42(1,mvMax);
m43(0);
};
inline void m42 (UINT i, C4 mv)
{
mMv[i] = mv;
};
inline void m43(UINT j)
{
m44 (j);
d41 = j + 1;
};
private:
C4 mMv[2];
UINT8 d41;
inline void m44 (UINT j) const {};
};
class C2
{
private:
bool valid;
};
class C1
{
public:
void m1(C3 *c);
private:
const C2 * d1[2];
void m2(C3 *m);
};
void C1::m1 (C3 *r)
{
C3 x;
m2(&x);
}
void C1::m2(C3 *x)
{
C3 m3;
int i;
m3.Reset ();
for(i=0; i<2; i++)
{
const C2 * r = d1[i];
if (r!=__null)
{
C4 const c400 = {0,0};
m3.m42 (i, c400);
}
}
}
......@@ -1299,6 +1299,12 @@ decide_block_copy (struct sra_elt *elt)
fputc ('\n', dump_file);
}
/* Disable scalarization of sub-elements */
for (c = elt->children; c; c = c->sibling)
{
c->cannot_scalarize = 1;
decide_block_copy (c);
}
return false;
}
......
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