public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r10-10349] Fortran: reject BOZ type argument to SIZEOF().
@ 2021-12-19 20:10 Harald Anlauf
  0 siblings, 0 replies; only message in thread
From: Harald Anlauf @ 2021-12-19 20:10 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:7ba46cc7867e0f7fc4b28f70f407067cfdd78112

commit r10-10349-g7ba46cc7867e0f7fc4b28f70f407067cfdd78112
Author: Harald Anlauf <anlauf@gmx.de>
Date:   Sat Dec 18 23:21:35 2021 +0100

    Fortran: reject BOZ type argument to SIZEOF().
    
    gcc/fortran/ChangeLog:
    
            PR fortran/103412
            * check.c (gfc_check_sizeof): Reject BOZ type argument.
    
    gcc/testsuite/ChangeLog:
    
            PR fortran/103412
            * gfortran.dg/illegal_boz_arg_2.f90: New test.
    
    (cherry picked from commit fd74a2ee40456a1d1621e88738f8e57536194080)

Diff:
---
 gcc/fortran/check.c                             | 3 +++
 gcc/testsuite/gfortran.dg/illegal_boz_arg_2.f90 | 6 ++++++
 2 files changed, 9 insertions(+)

diff --git a/gcc/fortran/check.c b/gcc/fortran/check.c
index 74d36cca1ac..8a124582cc6 100644
--- a/gcc/fortran/check.c
+++ b/gcc/fortran/check.c
@@ -5144,6 +5144,9 @@ gfc_check_sizeof (gfc_expr *arg)
       return false;
     }
 
+  if (illegal_boz_arg (arg))
+    return false;
+
   /* TYPE(*) is acceptable if and only if it uses an array descriptor.  */
   if (arg->ts.type == BT_ASSUMED
       && (arg->symtree->n.sym->as == NULL
diff --git a/gcc/testsuite/gfortran.dg/illegal_boz_arg_2.f90 b/gcc/testsuite/gfortran.dg/illegal_boz_arg_2.f90
new file mode 100644
index 00000000000..3e5f6b6d1d4
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/illegal_boz_arg_2.f90
@@ -0,0 +1,6 @@
+! { dg-do compile }
+! PR fortran/103412
+
+program p
+  integer, parameter :: a = sizeof(z'1') ! { dg-error "cannot be an actual" }
+end


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-12-19 20:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-19 20:10 [gcc r10-10349] Fortran: reject BOZ type argument to SIZEOF() Harald Anlauf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).