diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2018-05-01 14:32:03 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-01 14:32:03 -0700 |
| commit | 809f520da01abc18abe12c6eb6742297ca0fe303 (patch) | |
| tree | 7c82f7d87476cb43c4033d21561dfdc874896229 /source | |
| parent | 3ace6e7309a3b7ba7b9ca34472ca1828a39997a3 (diff) | |
Cleanups (#539)
* Cleanup: remove unused files from project
* Cleanup: move IRModule forward declaration into correct namespace
Diffstat (limited to 'source')
| -rw-r--r-- | source/slang/ir-ssa.h | 4 | ||||
| -rw-r--r-- | source/slang/slang.vcxproj | 2 | ||||
| -rw-r--r-- | source/slang/slang.vcxproj.filters | 2 |
3 files changed, 2 insertions, 6 deletions
diff --git a/source/slang/ir-ssa.h b/source/slang/ir-ssa.h index b9a05c2ff..ad874845b 100644 --- a/source/slang/ir-ssa.h +++ b/source/slang/ir-ssa.h @@ -1,9 +1,9 @@ // ir-ssa.h #pragma once -struct IRModule; - namespace Slang { + struct IRModule; + void constructSSA(IRModule* module); } diff --git a/source/slang/slang.vcxproj b/source/slang/slang.vcxproj index 09990889d..83a8a167c 100644 --- a/source/slang/slang.vcxproj +++ b/source/slang/slang.vcxproj @@ -181,8 +181,6 @@ <ClInclude Include="ir-inst-defs.h" /> <ClInclude Include="ir-insts.h" /> <ClInclude Include="ir-ssa.h" /> - <ClInclude Include="ir-type-defs.h" /> - <ClInclude Include="ir-types.h" /> <ClInclude Include="ir-validate.h" /> <ClInclude Include="ir.h" /> <ClInclude Include="legalize-types.h" /> diff --git a/source/slang/slang.vcxproj.filters b/source/slang/slang.vcxproj.filters index 82fc6ac87..0c522b921 100644 --- a/source/slang/slang.vcxproj.filters +++ b/source/slang/slang.vcxproj.filters @@ -47,8 +47,6 @@ <ClInclude Include="ir-ssa.h" /> <ClInclude Include="memory_pool.h" /> <ClInclude Include="ir-constexpr.h" /> - <ClInclude Include="ir-types.h" /> - <ClInclude Include="ir-type-defs.h" /> <ClInclude Include="type-system-shared.h" /> <ClInclude Include="ir-validate.h" /> </ItemGroup> |
