This commit was manufactured by cvs2svn to create branch

'gcc-3_2-branch'.

From-SVN: r57535
This commit is contained in:
No Author 2002-09-26 10:19:11 +00:00
parent d996fdac59
commit 52d3264584
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
/* Failed on sparc with -mv8plus because sparc.c:set_extends() thought
erroneously that SImode ASHIFT chops the upper bits, it does not. */
typedef unsigned long long uint64;
void g(uint64 x, int y, int z, uint64 *p)
{
unsigned w = ((x >> y) & 0xffffffffULL) << (z & 0x1f);
*p |= (w & 0xffffffffULL) << z;
}
int main(void)
{
uint64 a = 0;
g(0xdeadbeef01234567ULL, 0, 0, &a);
return (a == 0x01234567) ? 0 : 1;
}