We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7d1042 commit 09b6373Copy full SHA for 09b6373
llvm/lib/Analysis/DXILResource.cpp
@@ -780,6 +780,7 @@ DXILBindingMap::findByUse(const Value *Key) const {
780
781
switch (CI->getIntrinsicID()) {
782
case Intrinsic::not_intrinsic:
783
+ // TODO: Walk the call tree
784
return Infos.end();
785
case Intrinsic::dx_resource_handlefrombinding:
786
return find(CI);
@@ -847,6 +848,7 @@ bool DXILResourceBindingWrapperPass::runOnModule(Module &M) {
847
848
}
849
850
void DXILResourceBindingWrapperPass::releaseMemory() {
851
+ // TODO: Can't comment out this code
852
/*Map.reset();*/ }
853
854
void DXILResourceBindingWrapperPass::print(raw_ostream &OS,
0 commit comments