libflame  12600
Functions
bl1_check.c File Reference

(r12600)

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

void bl1_check_storage_2m ( int  a_rs,
int  a_cs,
int  b_rs,
int  b_cs 
)

References bl1_abort_msg(), and bl1_is_gen_storage().

{
    if ( bl1_is_gen_storage( a_rs, a_cs ) ||
         bl1_is_gen_storage( b_rs, b_cs ) )
    {
        bl1_abort_msg( "Function or conditional branch/case not yet implemented." );
    }
}
void bl1_check_storage_3m ( int  a_rs,
int  a_cs,
int  b_rs,
int  b_cs,
int  c_rs,
int  c_cs 
)

References bl1_abort_msg(), and bl1_is_gen_storage().

{
    if ( bl1_is_gen_storage( a_rs, a_cs ) ||
         bl1_is_gen_storage( b_rs, b_cs ) ||
         bl1_is_gen_storage( c_rs, c_cs ) )
    {
        bl1_abort_msg( "Function or conditional branch/case not yet implemented." );
    }
}