source: src/CompilationState.cc@ 1b54b54

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr persistent-indexer pthread-emulation qualifiedEnum
Last change on this file since 1b54b54 was 3b3491b6, checked in by Aaron Moss <a3moss@…>, 7 years ago

Add first draft of resolver prototype dumper

  • Property mode set to 100644
File size: 982 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 resolvprotop = false,
33 symtabp = false,
34 treep = false,
35 tuplep = false,
36 validp = false,
37 errorp = false,
38 codegenp = false,
39 prettycodegenp = false,
40 linemarks = false;
41
42// Local Variables: //
43// tab-width: 4 //
44// mode: c++ //
45// compile-command: "make install" //
46// End: //
Note: See TracBrowser for help on using the repository browser.