Changeset 54cd1a51 for src/AST/Expr.hpp


Ignore:
Timestamp:
Feb 11, 2025, 6:08:19 PM (11 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
502ff9e, a8404d9
Parents:
4d5c5b6a (diff), 691bf0a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Expr.hpp

    r4d5c5b6a r54cd1a51  
    483483
    484484        SizeofExpr( const CodeLocation & loc, const Type * t );
     485        SizeofExpr( const CodeLocation & loc, const Type * t, const Type * r );
    485486
    486487        const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
     
    496497
    497498        AlignofExpr( const CodeLocation & loc, const Type * t );
     499        AlignofExpr( const CodeLocation & loc, const Type * t, const Type * r );
    498500
    499501        const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
     
    538540
    539541        OffsetofExpr( const CodeLocation & loc, const Type * ty, const DeclWithType * mem );
     542        OffsetofExpr( const CodeLocation & loc, const Type * ty, const DeclWithType * mem, const Type * res );
    540543
    541544        const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
Note: See TracChangeset for help on using the changeset viewer.