https://github.com/shader-slang/slang
Raw File
Tip revision: cf34d2830a3103b2b47a4140d27d054b797705f2 authored by Yong He on 06 October 2022, 02:35:47 UTC
Various gfx fixes. (#2434)
Tip revision: cf34d28
slang-ir-simplify-cfg.h
// slang-ir-simplify-cfg.h
#pragma once

namespace Slang
{
    struct IRModule;

        /// Simplifies control flow graph by merging basic blocks that
        /// forms a simple linear chain.
        /// Returns true if changed.
    bool simplifyCFG(IRModule* module);
}
back to top