Fix potential integer overflow
This commit is contained in:
parent
cbb5deb2cc
commit
56c178783a
|
@ -1,4 +1,4 @@
|
||||||
/*********************************************************************/
|
/0*********************************************************************/
|
||||||
/* Copyright 2009, 2010 The University of Texas at Austin. */
|
/* Copyright 2009, 2010 The University of Texas at Austin. */
|
||||||
/* All rights reserved. */
|
/* All rights reserved. */
|
||||||
/* */
|
/* */
|
||||||
|
@ -166,7 +166,7 @@ void NAME(char *SIDE, char *UPLO,
|
||||||
int nodes;
|
int nodes;
|
||||||
#endif
|
#endif
|
||||||
# if defined(SMP)
|
# if defined(SMP)
|
||||||
int MN;
|
BLASLONG MN;
|
||||||
#endif
|
#endif
|
||||||
blasint info;
|
blasint info;
|
||||||
int side;
|
int side;
|
||||||
|
@ -264,7 +264,7 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_SIDE Side, enum CBLAS_UPLO Uplo,
|
||||||
int nodes;
|
int nodes;
|
||||||
#endif
|
#endif
|
||||||
#if defined(SMP)
|
#if defined(SMP)
|
||||||
int MN;
|
BLASLONG MN;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
PRINT_DEBUG_CNAME;
|
PRINT_DEBUG_CNAME;
|
||||||
|
|
Loading…
Reference in New Issue