iris: Drop unneeded default switch case

Avoids clang warning about the fall-through annotation.

Reviewed-by: Eric Anholt <eric@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10220>
This commit is contained in:
Michel Dänzer 2021-04-13 17:12:50 +02:00 committed by Marge Bot
parent a8a88a8d39
commit 8d4c31b3c7
1 changed files with 1 additions and 2 deletions

View File

@ -4649,9 +4649,8 @@ iris_store_derived_program_state(const struct gen_device_info *devinfo,
break;
case IRIS_CACHE_CS:
iris_store_cs_state(devinfo, shader);
case IRIS_CACHE_BLORP:
break;
default:
case IRIS_CACHE_BLORP:
break;
}
}