Home
last modified time | relevance | path

Searched defs:SIGNMULT (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libgcc/config/cris/
H A Darit.c45 #define SIGNMULT(s, a) ((s) * (a)) /* Cheap multiplication, better than branch. */ macro
47 #define SIGNMULT(s, a) ((s) < 0 ? -(a) : (a)) /* Branches are still better. */ macro
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/cris/
H A Darit.c45 #define SIGNMULT(s, a) ((s) * (a)) /* Cheap multiplication, better than branch. */ macro
47 #define SIGNMULT(s, a) ((s) < 0 ? -(a) : (a)) /* Branches are still better. */ macro