From 3e3e2473bf85365593629bd1f6f070d11f0b8ab2 Mon Sep 17 00:00:00 2001 From: Tim Foley Date: Fri, 13 Oct 2017 22:39:15 -0700 Subject: Get rid of the `-slang-ir-asm` target (#212) * Get rid of the `-slang-ir-asm` target This is really only useful for debugging, so I've replaced the functionality with a `-dump-ir` command line option (which dump's the IR for an entry point before doing codegen). * fixup: use HLSL target, not DXBC, so test can run on Linux --- source/slang/options.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'source/slang/options.cpp') diff --git a/source/slang/options.cpp b/source/slang/options.cpp index 693081f2a..79832a9c3 100644 --- a/source/slang/options.cpp +++ b/source/slang/options.cpp @@ -266,6 +266,14 @@ struct OptionsParser { flags |= SLANG_COMPILE_FLAG_NO_MANGLING; } + else if(argStr == "-dump-ir" ) + { + requestImpl->shouldDumpIR = true; + } + else if(argStr == "-skip-codegen" ) + { + requestImpl->shouldSkipCodegen = true; + } else if (argStr == "-backend" || argStr == "-target") { String name = tryReadCommandLineArgument(arg, &argCursor, argEnd); @@ -304,8 +312,6 @@ struct OptionsParser CASE(spirv, SPIRV); CASE(spirv-assembly, SPIRV_ASM); - CASE(slang-ir, IR); - CASE(slang-ir-assembly, IR_ASM); CASE(none, TARGET_NONE); #undef CASE -- cgit v1.2.3