source: src/CompilationState.cc@ 8fc6e92a

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 8fc6e92a 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: 1013 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 : 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 nomainp = false,
31 parsep = false,
32 resolvep = false,
33 resolvprotop = false,
34 symtabp = false,
35 treep = false,
36 tuplep = false,
37 validp = false,
38 errorp = false,
39 codegenp = false,
40 prettycodegenp = false,
41 linemarks = false;
42
43// Local Variables: //
44// tab-width: 4 //
45// mode: c++ //
46// compile-command: "make install" //
47// End: //
Note: See TracBrowser for help on using the repository browser.