https://github.com/shader-slang/slang
Raw File
Tip revision: 241def9c7619c437aad1bb620be8891e61707d8d authored by Yong He on 16 June 2022, 08:50:43 UTC
Language server: document symbols (#2287)
Tip revision: 241def9
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