re PR middle-end/63184 (Fails to simplify comparison)
2018-12-05 Richard Biener <rguenther@suse.de> PR middle-end/63184 * c-c++-common/pr19807-2.c: New testcase. * c-c++-common/pr19807-3.c: Likewise. From-SVN: r266827
This commit is contained in:
parent
c0c5112bcd
commit
1eb68b8c35
@ -1,3 +1,9 @@
|
||||
2018-12-05 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR middle-end/63184
|
||||
* c-c++-common/pr19807-2.c: New testcase.
|
||||
* c-c++-common/pr19807-3.c: Likewise.
|
||||
|
||||
2018-12-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
PR testsuite/88208
|
||||
|
12
gcc/testsuite/c-c++-common/pr19807-2.c
Normal file
12
gcc/testsuite/c-c++-common/pr19807-2.c
Normal file
@ -0,0 +1,12 @@
|
||||
/* { dg-do link } */
|
||||
/* { dg-options "-O" } */
|
||||
|
||||
extern void link_error(void);
|
||||
int i;
|
||||
int main()
|
||||
{
|
||||
int a[4];
|
||||
if ((char*)&a[1] + 4*i + 4 != (char*)&a[i+2])
|
||||
link_error();
|
||||
return 0;
|
||||
}
|
12
gcc/testsuite/c-c++-common/pr19807-3.c
Normal file
12
gcc/testsuite/c-c++-common/pr19807-3.c
Normal file
@ -0,0 +1,12 @@
|
||||
/* { dg-do link } */
|
||||
/* { dg-options "-O" } */
|
||||
|
||||
extern void link_error(void);
|
||||
int i;
|
||||
int main()
|
||||
{
|
||||
int a[4];
|
||||
if (&a[1] + i + 1 != &a[i+2])
|
||||
link_error();
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user