Changes in src/GenPoly/Lvalue.h [acd7c5dd:82dd287]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Lvalue.h
racd7c5dd r82dd287 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // Lvalue.h -- 7 // Lvalue.h -- 8 8 // 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Jul 22 09:21:59 201713 // Update Count : 212 // Last Modified On : Tue May 19 07:42:09 2015 13 // Update Count : 1 14 14 // 15 15 16 #pragma once 16 #ifndef _LVALUE_H 17 #define _LVALUE_H 17 18 18 19 #include <list> … … 23 24 /// replaces return type of `lvalue T` with `T*`, along with appropriate address-of and dereference operators 24 25 void convertLvalue( std::list< Declaration* >& translationUnit ); 26 } // namespace GenPoly 25 27 26 /// applies transformations that allow GCC to accept more complicated lvalue expressions, e.g. &(a, b) 27 Expression * generalizedLvalue( Expression * expr ); 28 } // namespace GenPoly 28 #endif // _LVALUE_H 29 29 30 30 // Local Variables: //
Note:
See TracChangeset
for help on using the changeset viewer.