This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/36341] MATMUL: Bounds check missing (run time & compile time)
- From: "dominiq at lps dot ens dot fr" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 28 Jun 2008 14:38:27 -0000
- Subject: [Bug fortran/36341] MATMUL: Bounds check missing (run time & compile time)
- References: <bug-36341-14178@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #9 from dominiq at lps dot ens dot fr 2008-06-28 14:38 -------
Should not
+ mpz_init_set (f->shape[0], a->shape[1]);
be
+ mpz_init_set (f->shape[0], a->shape[0]);
?
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36341