https://github.com/shader-slang/slang
Raw File
Tip revision: 0586f3298fa7d554fa2682103eefba88740d6758 authored by jsmall-nvidia on 18 January 2023, 19:11:50 UTC
Upgrade slang-llvm-13.x-33 (#2600)
Tip revision: 0586f32
slang-ir-strip-witness-tables.h
// slang-ir-strip-witness-tables.cpp
#pragma once

namespace Slang
{
struct IRModule;

    /// Strip the contents of all witness table instructions from the given IR `module`
void stripWitnessTables(IRModule* module);
}
back to top