summaryrefslogtreecommitdiff
path: root/source/slang/slang-ir.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-ir.cpp')
-rw-r--r--source/slang/slang-ir.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/source/slang/slang-ir.cpp b/source/slang/slang-ir.cpp
index 89e49816f..31224fde2 100644
--- a/source/slang/slang-ir.cpp
+++ b/source/slang/slang-ir.cpp
@@ -4040,26 +4040,6 @@ namespace Slang
{
for(auto dd : inst->getDecorations())
{
- // Certain decorations aren't helpful to appear
- // in output dumps, so we will only include them
- // in the "detailed" dumping mode.
- //
- // For all other modes, we will check the opcode
- // and skip selected decorations.
- //
- if(context->mode != IRDumpMode::Detailed)
- {
- switch(dd->op)
- {
- default:
- break;
-
- case kIROp_HighLevelDeclDecoration:
- case kIROp_LayoutDecoration:
- continue;
- }
- }
-
dump(context, "[");
dumpInstBody(context, dd);
dump(context, "]\n");