[llvm] [DXIL] Add support for root signature flag element in DXContainer (PR #123147)
Justin Bogner via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 11:39:30 PST 2025
================
@@ -0,0 +1,27 @@
+; RUN: not llc %s --filetype=obj -o - 2>&1 | FileCheck %s
----------------
bogner wrote:
This test crashes in DXContainerGlobals in a way that's unrelated to your pass, which is probably why you were having the issues that led you to add `report_fatal_error`.
It would be easier to write this test using `opt`, like `not opt -passes='print<dxil-root-signature>' %s -S -o - 2>&1 | FileCheck %s` - see my overall comment for more on that.
https://github.com/llvm/llvm-project/pull/123147
More information about the llvm-commits
mailing list