2013-02-12 Dominique d'Humieres <dominiq@lps.ens.fr>
Tobias Burnus <burnus@net-b.de>
PR fortran/56082
* gfortran.dg/bind_c_bool_1.f90 (sub): Change kind=4
to kind=2 as 32bit Darwin has C_Bool == 4.
Co-Authored-By: Tobias Burnus <burnus@net-b.de>
From-SVN: r195984
+2013-02-12 Dominique d'Humieres <dominiq@lps.ens.fr>
+ Tobias Burnus <burnus@net-b.de>
+
+ PR fortran/56082
+ * gfortran.dg/bind_c_bool_1.f90 (sub): Change kind=4
+ to kind=2.
+
2013-02-12 Richard Biener <rguenther@suse.de>
PR lto/56297
subroutine sub(x) bind(C) ! { dg-error "GNU Extension: LOGICAL dummy argument 'x' at .1. with non-C_Bool kind in BIND.C. procedure 'sub'" }
- logical(kind=4) :: x
+ logical(kind=2) :: x
end subroutine sub
subroutine sub3(y) bind(C)