From: Richard Biener Date: Wed, 17 Feb 2010 09:39:26 +0000 (+0000) Subject: re PR middle-end/41043 (virtual memory exhausted: Cannot allocate memory) X-Git-Tag: releases/gcc-4.5.0~750 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6832680673f05a91df9e902c808d809db73189a9;p=thirdparty%2Fgcc.git re PR middle-end/41043 (virtual memory exhausted: Cannot allocate memory) 2010-02-16 Richard Guenther PR tree-optimization/41043 * gfortran.dg/pr41043.f90: New testcase. * gcc.dg/Wstrict-overflow-18.c: XFAIL. From-SVN: r156824 --- diff --git a/gcc/testsuite/gfortran.dg/pr41043.f90 b/gcc/testsuite/gfortran.dg/pr41043.f90 new file mode 100644 index 000000000000..fab428b4d202 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/pr41043.f90 @@ -0,0 +1,11 @@ +! { dg-do compile } +! { dg-options "-O2" } + subroutine foo + implicit none + + integer :: i + + call gee_i(int(i**huge(0_8),kind=kind(i))) + + end subroutine foo +