Skip to content

Commit

Permalink
Added cladiv and zladiv, which exposed errors in one of the macros too.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcg1969 committed Jun 20, 2014
1 parent 557066b commit 83f68aa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vecLibFort.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ c_ ## type fname( VOIDA(n) ) \
}

#define CPLX_CALL(type,name,n) \
typedef void (*f_ ## name)( VOIDS(INC(n)) ); \
typedef void (*ft_ ## name)( VOIDS(INC(n)) ); \
static void *fp_ ## name = 0; \
CPLX_CALL_(type,name,name,n) \
CPLX_CALL_(type,name ## _,name,n)
Expand Down Expand Up @@ -223,6 +223,9 @@ D2F_CALL(slantr,8)
D2F_CALL(slapy2,2)
D2F_CALL(slapy3,3)

CPLX_CALL(float,cladiv,2)
CPLX_CALL(double,zladiv,2)

#if defined(VECLIBFORT_DYNBLAS) || defined(VECLIBFORT_INTERPOSE)

D2F_CALL(sdsdot,6)
Expand Down

0 comments on commit 83f68aa

Please sign in to comment.