From 652e4430580f27c08d35291ef0e14ce658a89917 Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Mon, 11 Jan 2016 14:24:29 -0800 Subject: [PATCH] vktSpvAsmInstructionTests: Don't create constants of type RuntimeArray This *may* make sense in some IR's such as LLVM which special-case NULL. However, an SSA value with a run-time length isn't really a well-defined thing. --- .../modules/vulkan/spirv_assembly/vktSpvAsmInstructionTests.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmInstructionTests.cpp b/external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmInstructionTests.cpp index 228165c..10649a3 100644 --- a/external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmInstructionTests.cpp +++ b/external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmInstructionTests.cpp @@ -2031,7 +2031,6 @@ tcu::TestCaseGroup* createOpConstantNullGroup (tcu::TestContext& testCtx) cases.push_back(CaseParameter("matrix", "%type = OpTypeMatrix %fvec3 3")); cases.push_back(CaseParameter("array", "%100 = OpConstant %u32 100\n" "%type = OpTypeArray %i32 %100")); - cases.push_back(CaseParameter("runtimearray", "%type = OpTypeRuntimeArray %f32")); cases.push_back(CaseParameter("struct", "%type = OpTypeStruct %f32 %i32 %u32")); cases.push_back(CaseParameter("pointer", "%type = OpTypePointer Function %i32")); -- 2.7.4