Changeset c341b57 for src/AST/Expr.cpp


Ignore:
Timestamp:
Feb 13, 2025, 5:52:15 PM (2 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
ef9f11c
Parents:
502ff9e (diff), 53f4b55 (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
  • TabularUnified src/AST/Expr.cpp

    r502ff9e rc341b57  
    301301// --- OffsetofExpr
    302302
    303 OffsetofExpr::OffsetofExpr( const CodeLocation & loc, const Type * ty, const DeclWithType * mem )
    304 : OffsetofExpr( loc, ty, mem, nullptr ) {}
    305 
    306303OffsetofExpr::OffsetofExpr( const CodeLocation & loc, const Type * ty, const DeclWithType * mem, const Type * res )
    307304: Expr( loc, res ), type( ty ), member( mem ) {
     
    324321
    325322// --- CommaExpr
     323
    326324bool CommaExpr::get_lvalue() const {
    327325        // This is wrong by C, but the current implementation uses it.
Note: See TracChangeset for help on using the changeset viewer.