Skip to content

Commit 7c5915c

Browse files
committed
remove unused function
1 parent 86775ab commit 7c5915c

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

llvm/include/llvm/Frontend/HLSL/RootSignatureValidations.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ LLVM_ABI bool verifyMipLODBias(float MipLODBias);
3838
LLVM_ABI bool verifyMaxAnisotropy(uint32_t MaxAnisotropy);
3939
LLVM_ABI bool verifyLOD(float LOD);
4040

41-
LLVM_ABI bool verifyBoundOffset(uint32_t Offset);
4241
LLVM_ABI bool verifyNoOverflowedOffset(uint64_t Offset);
4342
LLVM_ABI uint64_t computeRangeBound(uint32_t Offset, uint32_t Size);
4443

llvm/lib/Frontend/HLSL/RootSignatureValidations.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,6 @@ bool verifyMaxAnisotropy(uint32_t MaxAnisotropy) {
125125

126126
bool verifyLOD(float LOD) { return !std::isnan(LOD); }
127127

128-
bool verifyBoundOffset(uint32_t Offset) {
129-
return Offset != NumDescriptorsUnbounded;
130-
}
131-
132128
bool verifyNoOverflowedOffset(uint64_t Offset) {
133129
return Offset <= std::numeric_limits<uint32_t>::max();
134130
}

0 commit comments

Comments
 (0)