Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/clang/test/CodeGenSPIRV/fn.export.with.entrypoint.hlsl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: %dxc -T as_6_6 -E main -fspv-target-env=vulkan1.3 -fcgl %s -spirv | FileCheck %s
// RUN: %dxc -T as_6_6 -E main -fspv-target-env=universal1.5 -fcgl %s -spirv | FileCheck %s
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: add a note in the commit message to explain why this is changed here (I suppose due to the new vk1.3 validation rules added in SPV-tools?)


// CHECK: OpCapability Linkage
// CHECK: OpDecorate %external_function LinkageAttributes "external_function" Export
Expand All @@ -10,4 +10,4 @@ export int external_function() {
void main() {
external_function();
return;
}
}
Loading