source: src/Validate/FindSpecialDecls.h @ ba97ebf

Last change on this file since ba97ebf was c6b4432, checked in by Andrew Beach <ajbeach@…>, 8 months ago

Remove BaseSyntaxNode? and clean-up.

  • Property mode set to 100644
File size: 901 bytes
RevLine 
[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//
[11df881]7// FindSpecialDeclarations.h -- 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]18namespace ast {
19        class TranslationUnit;
20}
21
[2bfc6b2]22namespace 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.
26void 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.