diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2017-10-13 22:39:15 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-13 22:39:15 -0700 |
| commit | 3e3e2473bf85365593629bd1f6f070d11f0b8ab2 (patch) | |
| tree | 429dd72c135a43826a2aa29efe81b4de0915202b /source/slang/ir.cpp | |
| parent | 64ddefb90cf440df7879d1f2f9cc61de71e0f181 (diff) | |
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
Diffstat (limited to 'source/slang/ir.cpp')
| -rw-r--r-- | source/slang/ir.cpp | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/source/slang/ir.cpp b/source/slang/ir.cpp index a79dc3992..79d9883ea 100644 --- a/source/slang/ir.cpp +++ b/source/slang/ir.cpp @@ -805,8 +805,7 @@ namespace Slang } IRVar* IRBuilder::emitVar( - IRType* type, - IRAddressSpace addressSpace) + IRType* type) { auto allocatedType = getSession()->getPtrType(type); auto inst = createInst<IRVar>( @@ -817,13 +816,6 @@ namespace Slang return inst; } - - IRVar* IRBuilder::emitVar( - IRType* type) - { - return emitVar(type, kIRAddressSpace_Default); - } - IRInst* IRBuilder::emitLoad( IRValue* ptr) { @@ -1451,6 +1443,11 @@ namespace Slang { dumpDeclRef(context, declRefType->declRef); } + else if(auto groupSharedType = type->As<GroupSharedType>()) + { + dump(context, "@ThreadGroup "); + dumpType(context, groupSharedType->valueType); + } else { // Need a default case here |
