Undo last commit
This commit is contained in:
parent
78028a3310
commit
1d4914c590
|
|
@ -34,24 +34,15 @@ void require_support_function(support_function_t f)
|
||||||
const char *support_function::function_name(support_function_t type)
|
const char *support_function::function_name(support_function_t type)
|
||||||
{
|
{
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case SF_UNSIGNED_TO_BOOLEAN:
|
case SF_UNSIGNED_TO_BOOLEAN: return "Unsigned_To_Boolean";
|
||||||
return "Unsigned_To_Boolean";
|
case SF_SIGNED_TO_BOOLEAN: return "Signed_To_Boolean";
|
||||||
case SF_SIGNED_TO_BOOLEAN:
|
case SF_BOOLEAN_TO_LOGIC: return "Boolean_To_Logic";
|
||||||
return "Signed_To_Boolean";
|
case SF_REDUCE_OR: return "Reduce_OR";
|
||||||
case SF_BOOLEAN_TO_LOGIC:
|
case SF_REDUCE_AND: return "Reduce_AND";
|
||||||
return "Boolean_To_Logic";
|
case SF_REDUCE_XOR: return "Reduce_XOR";
|
||||||
case SF_REDUCE_OR:
|
case SF_TERNARY_LOGIC: return "Ternary_Logic";
|
||||||
return "Reduce_OR";
|
case SF_TERNARY_UNSIGNED: return "Ternary_Unsigned";
|
||||||
case SF_REDUCE_AND:
|
case SF_TERNARY_SIGNED: return "Ternary_Signed";
|
||||||
return "Reduce_AND";
|
|
||||||
case SF_REDUCE_XOR:
|
|
||||||
return "Reduce_XOR";
|
|
||||||
case SF_TERNARY_LOGIC:
|
|
||||||
return "Ternary_Logic";
|
|
||||||
case SF_TERNARY_UNSIGNED:
|
|
||||||
return "Ternary_Unsigned";
|
|
||||||
case SF_TERNARY_SIGNED:
|
|
||||||
return "Ternary_Signed";
|
|
||||||
default:
|
default:
|
||||||
assert(false);
|
assert(false);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue