projects
/
platform
/
upstream
/
openblas.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6efabf
)
Replace gnu _real_, _imag_ extensions in initializers
author
Martin Kroeker
<martin@ruby.chemie.uni-freiburg.de>
Sun, 12 Mar 2017 23:40:11 +0000
(
00:40
+0100)
committer
GitHub
<noreply@github.com>
Sun, 12 Mar 2017 23:40:11 +0000
(
00:40
+0100)
interface/zdot.c
patch
|
blob
|
history
diff --git
a/interface/zdot.c
b/interface/zdot.c
index d4d0fab921f9c3d72980d217139df28a06796d7e..4f83187e328ab5c344a345a81d077c2773c5ac4b 100644
(file)
--- a/
interface/zdot.c
+++ b/
interface/zdot.c
@@
-160,9
+160,9
@@
OPENBLAS_COMPLEX_FLOAT CNAME(blasint n, FLOAT *x, blasint incx, FLOAT *y, blasin
if (n <= 0) {
#ifdef FORCE_USE_STACK
-
//
*result = OPENBLAS_MAKE_COMPLEX_FLOAT(0.0, 0.0);
-
CREAL(*result) = 0.0;
-
CIMAG(*result) = 0.0;
+ *result = OPENBLAS_MAKE_COMPLEX_FLOAT(0.0, 0.0);
+
//
CREAL(*result) = 0.0;
+
//
CIMAG(*result) = 0.0;
return;
#else
return zero;