================
@@ -102,6 +102,7 @@ static ResourceClass getResourceClass(RegisterType RT) {
     return ResourceClass::Sampler;
   case RegisterType::C:
   case RegisterType::I:
+  default:
     llvm_unreachable("unexpected RegisterType value");
   }
----------------
mizvekov wrote:

There is a very useful warning about switching on an enumerator where not all 
enumerators are covered.

Adding a default case suppresses this warning, but this is undesirable, as we 
want to see this warning pop up when we add a new enumerator.

```suggestion
  }
  llvm_unreachable("unexpected RegisterType value");
```

https://github.com/llvm/llvm-project/pull/112767
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to