source: src/CompilationState.cc@ a77257be

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since a77257be was a77257be, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Compiler now supports --new-ast and --old-ast to select which algorithm to use

  • Property mode set to 100644
File size: 1.0 KB
Line 
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//
7// CompilationState.cc --
8//
9// Author : Rob Schluntz
10// Created On : Mon Ju1 30 10:47:01 2018
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Fri May 3 13:45:23 2019
13// Update Count : 4
14//
15
16int
17 astp = false,
18 bresolvep = false,
19 bboxp = false,
20 bcodegenp = false,
21 ctorinitp = false,
22 declstatsp = false,
23 exprp = false,
24 expraltp = false,
25 genericsp = false,
26 libcfap = false,
27 nopreludep = false,
28 genproto = false,
29 deterministic_output = false,
30 useNewAST = true,
31 nomainp = false,
32 parsep = false,
33 resolvep = false,
34 resolvprotop = false,
35 symtabp = false,
36 treep = false,
37 tuplep = false,
38 validp = false,
39 errorp = false,
40 codegenp = false,
41 prettycodegenp = false,
42 linemarks = false;
43
44// Local Variables: //
45// tab-width: 4 //
46// mode: c++ //
47// compile-command: "make install" //
48// End: //
Note: See TracBrowser for help on using the repository browser.