Last change
on this file since 0dffe91 was c92bdcc, checked in by Andrew Beach <ajbeach@…>, 17 months ago |
Updated the rest of the names in src/ (except for the generated files).
|
-
Property mode
set to
100644
|
File size:
903 bytes
|
Rev | Line | |
---|
[2bfc6b2] | 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 | //
|
---|
[c92bdcc] | 7 | // FindSpecialDeclarations.hpp -- Find special declarations used in the compiler.
|
---|
[2bfc6b2] | 8 | //
|
---|
| 9 | // Author : Rob Schluntz
|
---|
| 10 | // Created On : Thu Aug 30 09:49:02 2018
|
---|
[ce36b55] | 11 | // Last Modified By : Andrew Beach
|
---|
| 12 | // Last Modified On : Wed Nov 10 15:16:00 2021
|
---|
| 13 | // Update Count : 3
|
---|
[2bfc6b2] | 14 | //
|
---|
| 15 |
|
---|
| 16 | #pragma once
|
---|
| 17 |
|
---|
[ce36b55] | 18 | namespace ast {
|
---|
| 19 | class TranslationUnit;
|
---|
| 20 | }
|
---|
| 21 |
|
---|
[2bfc6b2] | 22 | namespace Validate {
|
---|
[ce36b55] | 23 |
|
---|
[11df881] | 24 | /// Find and remember some of the special declarations that are useful for
|
---|
[ce36b55] | 25 | /// generating code, so that they do not have to be discovered multiple times.
|
---|
| 26 | void findGlobalDecls( ast::TranslationUnit & translationUnit );
|
---|
| 27 |
|
---|
[2bfc6b2] | 28 | } // namespace Validate
|
---|
| 29 |
|
---|
| 30 | // Local Variables: //
|
---|
| 31 | // tab-width: 4 //
|
---|
| 32 | // mode: c++ //
|
---|
| 33 | // compile-command: "make install" //
|
---|
| 34 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.