remove switch-enum warnings

This commit is contained in:
Philippe Teuwen
2020-05-11 23:50:14 +02:00
parent 36c523659b
commit b46a99d7d7
8 changed files with 19 additions and 10 deletions

View File

@@ -90,7 +90,8 @@ static void get_SIMD_instruction_set(char *instruction_set) {
case SIMD_MMX:
strcpy(instruction_set, "MMX");
break;
default:
case SIMD_AUTO:
case SIMD_NONE:
strcpy(instruction_set, "no");
break;
}