Undo last commit

This commit is contained in:
Nick Gasson 2008-07-28 13:04:30 +01:00
parent 78028a3310
commit 1d4914c590
1 changed files with 9 additions and 18 deletions

View File

@ -34,24 +34,15 @@ void require_support_function(support_function_t f)
const char *support_function::function_name(support_function_t type)
{
switch (type) {
case SF_UNSIGNED_TO_BOOLEAN:
return "Unsigned_To_Boolean";
case SF_SIGNED_TO_BOOLEAN:
return "Signed_To_Boolean";
case SF_BOOLEAN_TO_LOGIC:
return "Boolean_To_Logic";
case SF_REDUCE_OR:
return "Reduce_OR";
case SF_REDUCE_AND:
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";
case SF_UNSIGNED_TO_BOOLEAN: return "Unsigned_To_Boolean";
case SF_SIGNED_TO_BOOLEAN: return "Signed_To_Boolean";
case SF_BOOLEAN_TO_LOGIC: return "Boolean_To_Logic";
case SF_REDUCE_OR: return "Reduce_OR";
case SF_REDUCE_AND: 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:
assert(false);
}