summaryrefslogtreecommitdiffstats
path: root/source/slang/compiler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/compiler.cpp')
-rw-r--r--source/slang/compiler.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/slang/compiler.cpp b/source/slang/compiler.cpp
index 37e9827f8..0f333aa3d 100644
--- a/source/slang/compiler.cpp
+++ b/source/slang/compiler.cpp
@@ -5,7 +5,6 @@
#include "../core/slang-io.h"
#include "../core/slang-string-util.h"
-#include "bytecode.h"
#include "compiler.h"
#include "lexer.h"
#include "lower-to-ir.h"
@@ -1079,18 +1078,6 @@ SlangResult dissassembleDXILUsingDXC(
generateOutputForTarget(targetReq);
}
- // If we are being asked to generate code in a container
- // format, then we are now in a position to do so.
- switch (compileRequest->containerFormat)
- {
- default:
- break;
-
- case ContainerFormat::SlangModule:
- generateBytecodeForCompileRequest(compileRequest);
- break;
- }
-
// If we are in command-line mode, we might be expected to actually
// write output to one or more files here.