diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/public_private_module_6.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/public_private_module_6.f90 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/public_private_module_6.f90 b/gcc/testsuite/gfortran.dg/public_private_module_6.f90 new file mode 100644 index 00000000000..85d6930d3d8 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/public_private_module_6.f90 @@ -0,0 +1,14 @@ +! { dg-do compile } +! { dg-options "-O1" } +! +! PR fortran/54221 +! +! Check that the unused PRIVATE "aaaa" variable is optimized away +! + +module m + private + integer, save :: aaaa +end module m + +! { dg-final { scan-assembler-not "aaaa" } } |