aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/tree-ssa/pr19476-4.C
blob: 8ae16140d6499396f4b34686540b9ec55a3b3d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O3 -fno-delete-null-pointer-checks -fdump-tree-optimized" } */

#include <new>

int g(){
  return 42 + (0 == new int);
}

/* { dg-final { scan-tree-dump-not "return 42" "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */