diff options
author | Paul Thomas <pault@gcc.gnu.org> | 2005-04-30 18:17:54 +0000 |
---|---|---|
committer | Paul Thomas <pault@gcc.gnu.org> | 2005-04-30 18:17:54 +0000 |
commit | f6c7d65b66de4abc0318718904e5947f663b9d91 (patch) | |
tree | 8d5060179c1555bf00d893dbf55493ade73249a1 /libgfortran/m4 | |
parent | 078885f2b7e25c0e061c2f47d08de46fc58967e9 (diff) | |
download | gcc-f6c7d65b66de4abc0318718904e5947f663b9d91.zip gcc-f6c7d65b66de4abc0318718904e5947f663b9d91.tar.gz gcc-f6c7d65b66de4abc0318718904e5947f663b9d91.tar.bz2 |
Fix matmul PR18857 and supply testcase
From-SVN: r99041
Diffstat (limited to 'libgfortran/m4')
-rw-r--r-- | libgfortran/m4/matmul.m4 | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libgfortran/m4/matmul.m4 b/libgfortran/m4/matmul.m4 index ebca646..9027450 100644 --- a/libgfortran/m4/matmul.m4 +++ b/libgfortran/m4/matmul.m4 @@ -169,10 +169,6 @@ sinclude(`matmul_asm_'rtype_code`.m4')dnl ycount = b->dim[1].ubound + 1 - b->dim[1].lbound; } - assert (a->base == 0); - assert (b->base == 0); - assert (retarray->base == 0); - abase = a->data; bbase = b->data; dest = retarray->data; |