Skip to content
This repository has been archived by the owner on Dec 20, 2019. It is now read-only.

Commit

Permalink
LDC: Upgrade submodules to v8.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kinke committed Jul 21, 2019
1 parent 013aa03 commit ed646d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion projects/SPIRV-LLVM-Translator
Submodule SPIRV-LLVM-Translator updated 71 files
+2 −2 .travis.yml
+6 −4 README.md
+9 −5 include/LLVMSPIRVLib.h
+2 −1 lib/SPIRV/CMakeLists.txt
+20 −15 lib/SPIRV/LLVMToSPIRVDbgTran.cpp
+1 −0 lib/SPIRV/LLVMToSPIRVDbgTran.h
+5 −5 lib/SPIRV/Mangler/Mangler.cpp
+28 −3 lib/SPIRV/Mangler/ManglingUtils.cpp
+13 −1 lib/SPIRV/Mangler/ParameterType.h
+0 −139 lib/SPIRV/OCL20To12.cpp
+32 −19 lib/SPIRV/OCL20ToSPIRV.cpp
+84 −6 lib/SPIRV/OCLUtil.cpp
+0 −1 lib/SPIRV/OCLUtil.h
+9 −0 lib/SPIRV/SPIRVInternal.h
+155 −155 lib/SPIRV/SPIRVReader.cpp
+4 −6 lib/SPIRV/SPIRVReader.h
+16 −1 lib/SPIRV/SPIRVToLLVMDbgTran.cpp
+471 −0 lib/SPIRV/SPIRVToOCL.cpp
+127 −0 lib/SPIRV/SPIRVToOCL.h
+122 −0 lib/SPIRV/SPIRVToOCL12.cpp
+61 −458 lib/SPIRV/SPIRVToOCL20.cpp
+52 −5 lib/SPIRV/SPIRVUtil.cpp
+75 −4 lib/SPIRV/SPIRVWriter.cpp
+7 −0 lib/SPIRV/SPIRVWriter.h
+6 −1 lib/SPIRV/libSPIRV/SPIRVBasicBlock.cpp
+10 −0 lib/SPIRV/libSPIRV/SPIRVDecorate.h
+7 −6 lib/SPIRV/libSPIRV/SPIRVEntry.cpp
+6 −1 lib/SPIRV/libSPIRV/SPIRVEntry.h
+13 −0 lib/SPIRV/libSPIRV/SPIRVEnum.h
+1 −1 lib/SPIRV/libSPIRV/SPIRVError.h
+2 −0 lib/SPIRV/libSPIRV/SPIRVErrorEnum.h
+10 −0 lib/SPIRV/libSPIRV/SPIRVFunction.h
+7 −0 lib/SPIRV/libSPIRV/SPIRVInstruction.h
+1 −0 lib/SPIRV/libSPIRV/SPIRVIsValidEnum.h
+36 −7 lib/SPIRV/libSPIRV/SPIRVModule.cpp
+8 −0 lib/SPIRV/libSPIRV/SPIRVModule.h
+16 −0 lib/SPIRV/libSPIRV/SPIRVOpCode.h
+8 −0 lib/SPIRV/libSPIRV/SPIRVType.h
+6 −0 lib/SPIRV/libSPIRV/SPIRVUtil.h
+7 −0 lib/SPIRV/libSPIRV/SPIRVValue.h
+6 −0 lib/SPIRV/libSPIRV/spirv.hpp
+40 −0 test/DebugInfo/DebugControlFlow.cl
+16 −0 test/DebugInfo/DebugDeclareUnused.cl
+81 −0 test/DebugInfo/Generic/inlined-locations.ll
+66 −0 test/DebugInfo/LocalAddressSpace.ll
+2 −0 test/NoSignedUnsignedWrap.ll
+88 −0 test/OpLoopMergeDontUnrollHint1.spt
+88 −0 test/OpLoopMergePartialUnroll.spt
+1 −1 test/OpLoopMergeUnroll.spt
+5 −5 test/SampledImage.ll
+111 −0 test/llvm.memcpy.align.ll
+69 −0 test/negative/memory_order.ll
+69 −0 test/negative/memory_scope.ll
+55 −0 test/spirv-ocl-builtins-version.spt
+2 −2 test/transcoding/LoopUnroll.ll
+34 −34 test/transcoding/OpControlBarrier_cl20.ll
+34 −34 test/transcoding/OpControlBarrier_cl20_subgroup.ll
+34 −34 test/transcoding/OpControlBarrier_cl21.ll
+10 −10 test/transcoding/OpImageSampleExplicitLod_arg.ll
+10 −10 test/transcoding/cl-types.ll
+16 −0 test/transcoding/enqueue_marker.cl
+2 −2 test/transcoding/spirv-types.ll
+1 −0 test/transcoding/subgroup_avc_intel_generic.ll
+200 −0 test/transcoding/subgroup_avc_intel_generic.spt
+35 −0 test/transcoding/subgroup_avc_intel_not_builtin.spt
+1 −0 test/transcoding/subgroup_avc_intel_types.ll
+111 −0 test/transcoding/subgroup_avc_intel_types.spt
+2 −0 test/transcoding/subgroup_avc_intel_vme_image.ll
+211 −0 test/transcoding/subgroup_avc_intel_vme_image.spt
+2 −0 test/transcoding/subgroup_avc_intel_wrappers.ll
+27 −0 test/zero-length-array.ll

0 comments on commit ed646d6

Please sign in to comment.