summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-ir-util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-ir-util.cpp')
-rw-r--r--source/slang/slang-ir-util.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/slang/slang-ir-util.cpp b/source/slang/slang-ir-util.cpp
index f75a24ac6..4aef7e7ba 100644
--- a/source/slang/slang-ir-util.cpp
+++ b/source/slang/slang-ir-util.cpp
@@ -616,11 +616,6 @@ void getTypeNameHint(StringBuilder& sb, IRInst* type)
case kIROp_HitObjectType:
sb << "HitObject";
break;
- case kIROp_HLSLConstBufferPointerType:
- sb << "ConstantBufferPointer<";
- getTypeNameHint(sb, as<IRHLSLConstBufferPointerType>(type)->getValueType());
- sb << ">";
- break;
case kIROp_HLSLStructuredBufferType:
sb << "StructuredBuffer<";
getTypeNameHint(sb, as<IRHLSLStructuredBufferTypeBase>(type)->getElementType());