ADTast-experimental
Last change
on this file since 35d1de5 was
11df881,
checked in by Andrew Beach <ajbeach@…>, 2 years ago
|
Updated documentation on pre-resolver passes, moving code to headers instead of uses. Note that some comments were just copied over, I don't know if they are accurate.
|
-
Property mode set to
100644
|
File size:
833 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 | // LabelAddressFixer.hpp -- Create label address expressions. |
---|
8 | // |
---|
9 | // Author : Andrew Beach |
---|
10 | // Created On : Fri Nov 12 16:29:00 2021 |
---|
11 | // Last Modified By : Andrew Beach |
---|
12 | // Last Modified On : Fri Nov 12 16:35:00 2021 |
---|
13 | // Update Count : 0 |
---|
14 | // |
---|
15 | |
---|
16 | namespace ast { |
---|
17 | class TranslationUnit; |
---|
18 | } |
---|
19 | |
---|
20 | namespace Validate { |
---|
21 | |
---|
22 | /// Label addresses are not actually created in the parser, this pass finds |
---|
23 | /// the patterns that represent the label address expression. |
---|
24 | void fixLabelAddresses( ast::TranslationUnit & translationUnit ); |
---|
25 | |
---|
26 | } |
---|
27 | |
---|
28 | // Local Variables: // |
---|
29 | // tab-width: 4 // |
---|
30 | // mode: c++ // |
---|
31 | // compile-command: "make install" // |
---|
32 | // End: // |
---|
Note: See
TracBrowser
for help on using the repository browser.