source: src/CompilationState.h@ a7b486b

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 a7b486b was 7215000, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Added flag to disable non-deteministic parts of the output when testing

  • Property mode set to 100644
File size: 993 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.h --
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:43:21 2019
13// Update Count : 4
14//
15
16extern int yydebug; // set for -g flag (Grammar)
17extern int
18 astp,
19 bresolvep,
20 bboxp,
21 bcodegenp,
22 ctorinitp,
23 declstatsp,
24 exprp,
25 expraltp,
26 genericsp,
27 libcfap,
28 nopreludep,
29 genproto,
30 deterministic_output,
31 nomainp,
32 parsep,
33 resolvep,
34 resolvprotop,
35 symtabp,
36 treep,
37 tuplep,
38 validp,
39 errorp,
40 codegenp,
41 prettycodegenp,
42 linemarks;
43
44// is the compiler building prelude or libcfa?
45inline bool buildingLibrary() {
46 return libcfap | treep;
47}
48
49// Local Variables: //
50// tab-width: 4 //
51// mode: c++ //
52// compile-command: "make install" //
53// End: //
Note: See TracBrowser for help on using the repository browser.