diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-15 12:49:45 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-15 12:49:45 +0000 |
commit | c0d02c82ff98a20e198267d59aedf596353c7dea (patch) | |
tree | 0a01e2ea549c9f0e67b07d2dfa92acd10dfd7e63 /libgfortran/m4 | |
parent | dddf441266d472f3ae3d14756ff5cfa332d467ae (diff) | |
download | ppe42-gcc-c0d02c82ff98a20e198267d59aedf596353c7dea.tar.gz ppe42-gcc-c0d02c82ff98a20e198267d59aedf596353c7dea.zip |
Remove extra whitespace.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99720 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/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 1d1ec6018a9..dd75cf7b073 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 |