https://github.com/shader-slang/slang
Raw File
Tip revision: 108ba4e0a9949613948c13c4cca8003a7b47e537 authored by Yong He on 16 June 2022, 06:24:35 UTC
fix
Tip revision: 108ba4e
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