Ignore:
Timestamp:
Aug 29, 2024, 2:38:39 PM (14 months ago)
Author:
JiadaL <j82liang@…>
Branches:
master
Children:
9bb6c5f
Parents:
960665c (diff), b965774 (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/Parser/ExpressionNode.cpp

    r960665c rad47ec4  
    99// Author           : Peter A. Buhr
    1010// Created On       : Sat May 16 13:17:07 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Dec 14 18:57:07 2023
    13 // Update Count     : 1087
     11// Last Modified By : Andrew Beach
     12// Last Modified On : Fri Aug 23 10:22:00 2024
     13// Update Count     : 1088
    1414//
    1515
     
    780780} // build_compoundLiteral
    781781
     782ast::Expr * build_va_arg( const CodeLocation & location,
     783                ExpressionNode * function, DeclarationNode * declaration ) {
     784        return build_func( location,
     785                new ExpressionNode(
     786                        build_varref( location, new std::string( "__builtin_va_arg" ) ) ),
     787                function->set_last( new ExpressionNode( new ast::TypeExpr( location,
     788                        maybeMoveBuildType( declaration ) ) ) )
     789        );
     790}
     791
    782792// Local Variables: //
    783793// tab-width: 4 //
Note: See TracChangeset for help on using the changeset viewer.