source: src/CompilationState.cc @ b91bfde

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since b91bfde was 0ea0b8f, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

Using new-ast now requires configuring with --enable-new-ast or compiling with -XCFA,--new-ast

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