11/*****************************************************************************
2- Copyright (c) 2011, Lab of Parallel Software and Computational Science,ICSAS
2+ Copyright (c) 2011-2014, The OpenBLAS Project
33All rights reserved.
44
55Redistribution and use in source and binary forms, with or without
@@ -13,9 +13,10 @@ modification, are permitted provided that the following conditions are
1313 notice, this list of conditions and the following disclaimer in
1414 the documentation and/or other materials provided with the
1515 distribution.
16- 3. Neither the name of the ISCAS nor the names of its contributors may
17- be used to endorse or promote products derived from this software
18- without specific prior written permission.
16+ 3. Neither the name of the OpenBLAS project nor the names of
17+ its contributors may be used to endorse or promote products
18+ derived from this software without specific prior written
19+ permission.
1920
2021THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2122AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
@@ -27,7 +28,6 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2728CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2829OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
2930USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30-
3131**********************************************************************************/
3232
3333/*********************************************************************/
@@ -119,9 +119,9 @@ static inline int blas_quickdivide(blasint x, blasint y){
119119}
120120
121121#if defined(DOUBLE )
122- #define GET_IMAGE (res ) __asm__ __volatile__("vstr.f64 d1, %0" : "=m"(res) : : "memory")
122+ #define GET_IMAGE (res ) __asm__ __volatile__("str d1, %0" : "=m"(res) : : "memory")
123123#else
124- #define GET_IMAGE (res ) __asm__ __volatile__("vstr.f32 s1, %0" : "=m"(res) : : "memory")
124+ #define GET_IMAGE (res ) __asm__ __volatile__("str s1, %0" : "=m"(res) : : "memory")
125125#endif
126126
127127#define GET_IMAGE_CANCEL
@@ -138,7 +138,6 @@ static inline int blas_quickdivide(blasint x, blasint y){
138138#if defined(ASSEMBLER ) && !defined(NEEDPARAM )
139139
140140#define PROLOGUE \
141- .arm ;\
142141 .global REALNAME ;\
143142 .func REALNAME ;\
144143REALNAME:
0 commit comments