| 366 | } |
| 367 | |
| 368 | Func test_abi_func ( Func a, Context * ctx ) { |
| 369 | bool found = false; |
| 370 | for ( int i=0; i!=ctx->getTotalFunctions(); ++i ) { |
| 371 | if ( ctx->getFunction(i)==a.PTR ) { |
| 372 | found = true; |
| 373 | break; |
| 374 | } |
| 375 | } |
| 376 | if ( !found ) ctx->throw_error("function not found"); |
| 377 | return a; |
| 378 | } |
| 379 | |
| 380 | TDim<int32_t,10> testCMRES ( Context * __context__ ) |
| 381 | { |
nothing calls this directly
no test coverage detected