source: src/CompilationState.cc @ fd2debf

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change on this file since fd2debf was 7f38b67a, checked in by Rob Schluntz <rschlunt@…>, 6 years ago

Factor global booleans into CompilationState?

  • Property mode set to 100644
File size: 1000 bytes
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 : Rob Schluntz
12// Last Modified On : Mon Ju1 30 10:46:25 2018
13// Update Count     : 2
14//
15
16bool
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        noprotop = false,
29        nomainp = false,
30        parsep = false,
31        resolvep = false,
32        symtabp = false,
33        treep = false,
34        tuplep = false,
35        validp = false,
36        errorp = false,
37        codegenp = false,
38        prettycodegenp = false,
39        linemarks = false;
40
41// bootstrapping:
42//   libcfap || treep
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.