[llvm] [HLSL] Fix Root signature test error (PR #127261)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 14 13:02:38 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-directx
Author: None (joaosaffran)
<details>
<summary>Changes</summary>
Fixing error detected in build bot in file `RootSignature-MultipleEntryFunctions.ll`
closes: [127260](https://github.com/llvm/llvm-project/issues/127260)
---
Full diff: https://github.com/llvm/llvm-project/pull/127261.diff
1 Files Affected:
- (modified) llvm/test/CodeGen/DirectX/ContainerData/RootSignature-MultipleEntryFunctions.ll (+4-5)
``````````diff
diff --git a/llvm/test/CodeGen/DirectX/ContainerData/RootSignature-MultipleEntryFunctions.ll b/llvm/test/CodeGen/DirectX/ContainerData/RootSignature-MultipleEntryFunctions.ll
index 652f8092b7a69..0547b0bae7a7e 100644
--- a/llvm/test/CodeGen/DirectX/ContainerData/RootSignature-MultipleEntryFunctions.ll
+++ b/llvm/test/CodeGen/DirectX/ContainerData/RootSignature-MultipleEntryFunctions.ll
@@ -23,17 +23,16 @@ attributes #0 = { "hlsl.numthreads"="1,1,1" "hlsl.shader"="compute" }
!6 = !{ !7 } ; list of root signature elements
!7 = !{ !"RootFlags", i32 2 } ; 1 = allow_input_assembler_input_layout
-
-; CHECK-LABEL: Definition for 'main':
-; CHECK-NEXT: Flags: 0x000001
+; CHECK-LABEL: Definition for 'anotherMain':
+; CHECK-NEXT: Flags: 0x000002
; CHECK-NEXT: Version: 2
; CHECK-NEXT: NumParameters: 0
; CHECK-NEXT: RootParametersOffset: 0
; CHECK-NEXT: NumStaticSamplers: 0
; CHECK-NEXT: StaticSamplersOffset: 0
-; CHECK-LABEL: Definition for 'anotherMain':
-; CHECK-NEXT: Flags: 0x000002
+; CHECK-LABEL: Definition for 'main':
+; CHECK-NEXT: Flags: 0x000001
; CHECK-NEXT: Version: 2
; CHECK-NEXT: NumParameters: 0
; CHECK-NEXT: RootParametersOffset: 0
``````````
</details>
https://github.com/llvm/llvm-project/pull/127261
More information about the llvm-commits
mailing list