diff options
author | Andreas Jaeger <aj@gcc.gnu.org> | 2005-05-15 14:49:45 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2005-05-15 14:49:45 +0200 |
commit | 420aa7b82c350fee7ce3ea0f0b65be123c3002a6 (patch) | |
tree | 0a01e2ea549c9f0e67b07d2dfa92acd10dfd7e63 /libgfortran/m4/matmul.m4 | |
parent | 4b6903ec2f37dc342e2a6dbf5507258a845e610f (diff) | |
download | gcc-420aa7b82c350fee7ce3ea0f0b65be123c3002a6.zip gcc-420aa7b82c350fee7ce3ea0f0b65be123c3002a6.tar.gz gcc-420aa7b82c350fee7ce3ea0f0b65be123c3002a6.tar.bz2 |
Remove extra whitespace.
From-SVN: r99720
Diffstat (limited to 'libgfortran/m4/matmul.m4')
-rw-r--r-- | libgfortran/m4/matmul.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libgfortran/m4/matmul.m4 b/libgfortran/m4/matmul.m4 index 1d1ec60..dd75cf7 100644 --- a/libgfortran/m4/matmul.m4 +++ b/libgfortran/m4/matmul.m4 @@ -93,12 +93,12 @@ matmul_`'rtype_code (rtype * retarray, rtype * a, rtype * b) retarray->dim[0].lbound = 0; retarray->dim[0].ubound = a->dim[0].ubound - a->dim[0].lbound; retarray->dim[0].stride = 1; - + retarray->dim[1].lbound = 0; retarray->dim[1].ubound = b->dim[1].ubound - b->dim[1].lbound; retarray->dim[1].stride = retarray->dim[0].ubound+1; } - + retarray->data = internal_malloc_size (sizeof (rtype_name) * size0 ((array_t *) retarray)); retarray->base = 0; @@ -159,7 +159,7 @@ sinclude(`matmul_asm_'rtype_code`.m4')dnl /* bystride should never be used for 1-dimensional b. in case it is we want it to cause a segfault, rather than an incorrect result. */ - bystride = 0xDEADBEEF; + bystride = 0xDEADBEEF; ycount = 1; } else |