Changes in src/GenPoly/Lvalue.h [b0440b7:acd7c5dd]
- File:
-
- 1 edited
-
src/GenPoly/Lvalue.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Lvalue.h
rb0440b7 racd7c5dd 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue May 19 07:42:09 201513 // Update Count : 112 // Last Modified On : Sat Jul 22 09:21:59 2017 13 // Update Count : 2 14 14 // 15 15 16 #ifndef _LVALUE_H 17 #define _LVALUE_H 16 #pragma once 18 17 19 18 #include <list> … … 25 24 void convertLvalue( std::list< Declaration* >& translationUnit ); 26 25 27 /// true after reference types have been eliminated from the source code. After this point, reference types should not be added to the AST.28 bool referencesPermissable();26 /// applies transformations that allow GCC to accept more complicated lvalue expressions, e.g. &(a, b) 27 Expression * generalizedLvalue( Expression * expr ); 29 28 } // namespace GenPoly 30 31 #endif // _LVALUE_H32 29 33 30 // Local Variables: //
Note:
See TracChangeset
for help on using the changeset viewer.