Skip to content

Commit 263ced2

Browse files
committed
clean up 7
1 parent ad3d595 commit 263ced2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/include/llvm/Frontend/HLSL/HLSLBinding.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,10 @@ class BoundRegs {
132132
public:
133133
BoundRegs(SmallVector<Binding> &&Bindings) : Bindings(std::move(Bindings)) {}
134134

135-
// UpperBound and Cookie are given dummy values, since they aren't
136-
// interesting for operator<
137135
bool isBound(dxil::ResourceClass RC, uint32_t Space, uint32_t LowerBound,
138136
uint32_t UpperBound) const {
137+
// UpperBound and Cookie are given dummy values, since they aren't
138+
// interesting for operator<
139139
const Binding *It =
140140
llvm::upper_bound(Bindings, Binding{RC, Space, LowerBound, 0, nullptr});
141141
if (It == Bindings.begin())

0 commit comments

Comments
 (0)