libflame  revision_anchor
Functions
bl1_check.c File Reference

(r)

Functions

void bl1_check_storage_3m (int a_rs, int a_cs, int b_rs, int b_cs, int c_rs, int c_cs)
 
void bl1_check_storage_2m (int a_rs, int a_cs, int b_rs, int b_cs)
 

Function Documentation

◆ bl1_check_storage_2m()

void bl1_check_storage_2m ( int  a_rs,
int  a_cs,
int  b_rs,
int  b_cs 
)
26 {
27  if ( bl1_is_gen_storage( a_rs, a_cs ) ||
28  bl1_is_gen_storage( b_rs, b_cs ) )
29  {
30  bl1_abort_msg( "Function or conditional branch/case not yet implemented." );
31  }
32 }
void bl1_abort_msg(char *message)
Definition: bl1_abort.c:18
int bl1_is_gen_storage(int rs, int cs)
Definition: bl1_is.c:100

References bl1_abort_msg(), and bl1_is_gen_storage().

◆ bl1_check_storage_3m()

void bl1_check_storage_3m ( int  a_rs,
int  a_cs,
int  b_rs,
int  b_cs,
int  c_rs,
int  c_cs 
)
16 {
17  if ( bl1_is_gen_storage( a_rs, a_cs ) ||
18  bl1_is_gen_storage( b_rs, b_cs ) ||
19  bl1_is_gen_storage( c_rs, c_cs ) )
20  {
21  bl1_abort_msg( "Function or conditional branch/case not yet implemented." );
22  }
23 }

References bl1_abort_msg(), and bl1_is_gen_storage().