source: src/CompilationState.cpp@ 5c56a22

Last change on this file since 5c56a22 was 5c56a22, checked in by Peter A. Buhr <pabuhr@…>, 2 weeks ago

harmonize AST dump and flag names, and the order the passes are called

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[7f38b67a]1//
2// Cforall Version 1.0.0 Copyright (C) 2018 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[5f225f5]7// CompilationState.cpp --
[7f38b67a]8//
9// Author : Rob Schluntz
10// Created On : Mon Ju1 30 10:47:01 2018
[372b6d3]11// Last Modified By : Peter A. Buhr
[5c56a22]12// Last Modified On : Sat Mar 7 15:43:02 2026
13// Update Count : 11
[7f38b67a]14//
15
[0ea0b8f]16#include "config.h"
17
[3e96559]18int
[7f38b67a]19 astp = false,
[5c56a22]20 bresolverp = false,
[7f38b67a]21 bboxp = false,
22 bcodegenp = false,
[5c56a22]23 ctordtorp = false,
[7f38b67a]24 declstatsp = false,
[5c56a22]25 excpdeclp = false,
[7f38b67a]26 expraltp = false,
[5c56a22]27 expranlp = false,
28 instgenp = false,
[372b6d3]29 invariant = false,
[7f38b67a]30 libcfap = false,
31 nopreludep = false,
[62ce290]32 genproto = false,
[7215000]33 deterministic_output = false,
[0fc91db1]34 useNewAST = true,
[7f38b67a]35 nomainp = false,
36 resolvep = false,
[3b3491b6]37 resolvprotop = false,
[7f38b67a]38 symtabp = false,
39 treep = false,
40 tuplep = false,
[5c56a22]41 valideclp = false,
[7f38b67a]42 errorp = false,
43 codegenp = false,
44 prettycodegenp = false,
[a55ebcc]45 linemarks = false,
46 reppseu = false;
[7f38b67a]47
48// Local Variables: //
49// tab-width: 4 //
50// mode: c++ //
51// compile-command: "make install" //
52// End: //
Note: See TracBrowser for help on using the repository browser.