// // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // MultiLevelExit.hpp -- // // Author : Andrew Beach // Created On : Mon Nov 1 13:49:00 2021 // Last Modified By : Andrew Beach // Last Modified On : Mon Nov 2 10:26:00 2021 // Update Count : 0 // #pragma once #include namespace ast { class CompoundStmt; class Label; class Stmt; } namespace ControlStruct { class LabelGenerator_new; using LabelToStmt = std::map; /// Mutate a function body to handle multi-level exits. const ast::CompoundStmt * multiLevelExitUpdate( const ast::CompoundStmt *, LabelToStmt *, LabelGenerator_new *); } // Local Variables: // // tab-width: 4 // // mode: c++ // // compile-command: "make install" // // End: //