blob: 32716cad1c9b3f20963362758c910cab79dac8df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-ccp1-details" } */
extern "C" void abort (void);
inline void *operator new (__SIZE_TYPE__, void *__p) throw () { return __p; }
int foo(void)
{
float f = 0;
int *i = new (&f) int (1);
return *(int *)&f;
}
/* { dg-final { scan-tree-dump "Folded into: if \\\(1 != 0\\\)" "ccp1" } } */
/* { dg-final { cleanup-tree-dump "ccp1" } } */
|