File tree Expand file tree Collapse file tree 2 files changed +0
-5
lines changed
include/llvm/Frontend/HLSL Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ LLVM_ABI bool verifyMipLODBias(float MipLODBias);
3838LLVM_ABI bool verifyMaxAnisotropy (uint32_t MaxAnisotropy);
3939LLVM_ABI bool verifyLOD (float LOD);
4040
41- LLVM_ABI bool verifyBoundOffset (uint32_t Offset);
4241LLVM_ABI bool verifyNoOverflowedOffset (uint64_t Offset);
4342LLVM_ABI uint64_t computeRangeBound (uint32_t Offset, uint32_t Size);
4443
Original file line number Diff line number Diff line change @@ -125,10 +125,6 @@ bool verifyMaxAnisotropy(uint32_t MaxAnisotropy) {
125125
126126bool verifyLOD (float LOD) { return !std::isnan (LOD); }
127127
128- bool verifyBoundOffset (uint32_t Offset) {
129- return Offset != NumDescriptorsUnbounded;
130- }
131-
132128bool verifyNoOverflowedOffset (uint64_t Offset) {
133129 return Offset <= std::numeric_limits<uint32_t >::max ();
134130}
You can’t perform that action at this time.
0 commit comments