Changeset bf4fe05 for src/CodeGen/FixMain.cpp
- Timestamp:
- May 13, 2024, 7:07:06 AM (17 months ago)
- Branches:
- master
- Children:
- ca4f2b2
- Parents:
- ec20ab9 (diff), 5f225f5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/FixMain.cpp
rec20ab9 rbf4fe05 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // FixMain.c c-- Tools to change a Cforall main into a C main.7 // FixMain.cpp -- Tools to change a Cforall main into a C main. 8 8 // 9 9 // Author : Thierry Delisle … … 14 14 // 15 15 16 #include "FixMain.h "16 #include "FixMain.hpp" 17 17 18 #include <cassert> // for assert, assertf19 #include <fstream> // for operator<<, basic_ostream::operator<<20 #include <list> // for list21 #include <string> // for operator<<18 #include <cassert> // for assert, assertf 19 #include <fstream> // for operator<<, basic_ostream::oper... 20 #include <list> // for list 21 #include <string> // for operator<< 22 22 23 23 #include "AST/Decl.hpp" … … 25 25 #include "AST/Type.hpp" 26 26 #include "AST/Vector.hpp" 27 #include "Common/SemanticError.h " // for SemanticError28 #include "CodeGen/GenType.h " // for GenType29 #include "SymTab/Mangler.h "27 #include "Common/SemanticError.hpp" // for SemanticError 28 #include "CodeGen/GenType.hpp" // for GenType 29 #include "SymTab/Mangler.hpp" 30 30 31 31 namespace CodeGen {
Note:
See TracChangeset
for help on using the changeset viewer.