Changes in src/GenPoly/ScrubTyVars.cc [adc6781:6d160d7]
- File:
-
- 1 edited
-
src/GenPoly/ScrubTyVars.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/ScrubTyVars.cc
radc6781 r6d160d7 64 64 // sizeof( T ) => _sizeof_T parameter, which is the size of T 65 65 if ( Type *polyType = isPolyType( szeof->get_type() ) ) { 66 Expression *expr = new NameExpr( sizeofName( mangleType( polyType )) );66 Expression *expr = new NameExpr( sizeofName( polyType ) ); 67 67 return expr; 68 68 } else { … … 74 74 // alignof( T ) => _alignof_T parameter, which is the alignment of T 75 75 if ( Type *polyType = isPolyType( algnof->get_type() ) ) { 76 Expression *expr = new NameExpr( alignofName( mangleType( polyType )) );76 Expression *expr = new NameExpr( alignofName( polyType ) ); 77 77 return expr; 78 78 } else {
Note:
See TracChangeset
for help on using the changeset viewer.