aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Frontend.mli
Commit message (Collapse)AuthorAgeFilesLines
* Various improvements in the wording of diagnostics.Michael Schmidt2018-08-021-1/+1
| | | | | | Fix various typos in diagnostic messages and unified wording and capitalization. Bug 23850
* Move machine initialization to Frontend.init function. (#49)Bernhard Schommer2018-01-111-0/+3
| | | | | The initialization of Machine.config, as well as the calls to various initialization functions for the C front-end, are now performed by the new `Frontend.init` function. This avoids code duplication in driver/Driver.ml and exportclight/Clightgen.ml.
* Moved assembler and linker into own files.Bernhard Schommer2016-06-241-0/+1
| | | | | | The function to call the assembler and the linker are now in own files like the preprocessor. Bug 19197
* Moved shared frontend code in own file.Bernhard Schommer2016-05-241-0/+23
Clightgen and CompCert share the code for preprocessing as well as parsing C files. The code as well as command line switches is moved in the new module Frontend. Bug 18768