// // 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. // // ExceptTranslate.h -- // // Author : Andrew Beach // Created On : Tus Jun 06 10:13:00 2017 // Last Modified By : Andrew Beach // Last Modified On : Fri Jun 30 10:20:00 2017 // Update Count : 2 // #ifndef EXCEPT_TRANSLATE_H #define EXCEPT_TRANSLATE_H #include #include "SynTree/SynTree.h" namespace ControlStruct { void translateEHM( std::list< Declaration *> & translationUnit ); /* Converts exception handling structures into their underlying C code. * Translation does use the exception handling header, make sure it is * visible wherever translation occurs. */ } #endif // EXCEPT_TRANSLATE_H