[multiple changes]

2009-10-21  H.J. Lu  <hongjiu.lu@intel.com>

	2009-10-16  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/41728
	* gcc.c-torture/compile/pr41728.c: New testcase.

	2009-10-15  Jakub Jelinek  <jakub@redhat.com>

	PR debug/41717
	* gcc.dg/debug/pr41717.c: New test.

From-SVN: r153063
This commit is contained in:
H.J. Lu 2009-10-21 16:05:31 +00:00 committed by H.J. Lu
parent 3bad788fb5
commit e5c80fe84c
3 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,15 @@
2009-10-21 H.J. Lu <hongjiu.lu@intel.com>
2009-10-16 Richard Guenther <rguenther@suse.de>
PR tree-optimization/41728
* gcc.c-torture/compile/pr41728.c: New testcase.
2009-10-15 Jakub Jelinek <jakub@redhat.com>
PR debug/41717
* gcc.dg/debug/pr41717.c: New test.
2009-10-21 Jakub Jelinek <jakub@redhat.com>
* g++.dg/abi/mangle33.C: New test.

View File

@ -0,0 +1,12 @@
int a[8];
int s244(void)
{
int lrc, j;
lrc = 0;
for (j=0; j<7; j++)
if(a[j] != a[j+1])
lrc = 1;
if (lrc != 0)
return 0;
return 1;
}

View File

@ -0,0 +1,10 @@
/* PR debug/41717 */
/* { dg-do compile } */
void
foo (void)
{
_Complex float v[1], w;
v[1] = 0.0f + 0.8fi;
w = __builtin_conjf (v[1] * v[1]);
}