[llvm] [DirectX] only allow intrinsics defined in DXIL.td (PR #128613)

Justin Bogner via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 25 01:56:55 PST 2025


================
@@ -770,8 +770,14 @@ class OpLowerer {
         continue;
       Intrinsic::ID ID = F.getIntrinsicID();
       switch (ID) {
-      default:
+      case Intrinsic::dx_resource_casthandle:
+      case Intrinsic::not_intrinsic:
         continue;
+      default: {
+        DiagnosticInfoUnsupported Diag(F, "Unknown intrinsic?");
+        M.getContext().diagnose(Diag);
----------------
bogner wrote:

That's because you're using `opt`, which has the default error handler that just exits the program. If you want a test case with multiple errors you need to use `llc` (or `clang`, but that wouldn't be appropriate for this kind of test)

https://github.com/llvm/llvm-project/pull/128613


More information about the llvm-commits mailing list