Changeset 8f610e85


Ignore:
Timestamp:
Mar 2, 2016, 5:13:21 PM (8 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
4040425
Parents:
bdad1679
Message:

allow qualifiers onto gcc builtin_va_list

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/TypeData.cc

    rbdad1679 r8f610e85  
    1010// Created On       : Sat May 16 15:12:51 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Mar  2 16:34:22 2016
    13 // Update Count     : 47
     12// Last Modified On : Wed Mar  2 17:08:38 2016
     13// Update Count     : 48
    1414//
    1515
     
    520520                return buildTypeof();
    521521          case Builtin:
    522                 return new VarArgsType();
     522                return new VarArgsType( buildQualifiers() );
    523523          case Attr:
    524524                return buildAttr();
  • src/SynTree/Type.h

    rbdad1679 r8f610e85  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Feb 26 14:34:08 2016
    13 // Update Count     : 19
     12// Last Modified On : Wed Mar  2 17:10:38 2016
     13// Update Count     : 20
    1414//
    1515
     
    404404  public:
    405405        VarArgsType();
    406         VarArgsType( Type::Qualifiers &tq );
     406        VarArgsType( Type::Qualifiers tq );
    407407
    408408        virtual VarArgsType *clone() const { return new VarArgsType( *this ); }
  • src/SynTree/VarArgsType.cc

    rbdad1679 r8f610e85  
    99// Author           : Aaron B. Moss
    1010// Created On       : Thu Feb 25 16:34:00 2016
    11 // Last Modified By : Aaron B. Moss
    12 // Last Modified On : Thu Feb 25 16:34:00 2016
    13 // Update Count     : 1
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Wed Mar  2 17:10:40 2016
     13// Update Count     : 2
    1414//
    1515
     
    1818VarArgsType::VarArgsType() : Type( Type::Qualifiers() ) {}
    1919
    20 VarArgsType::VarArgsType( Type::Qualifiers &tq ) : Type( tq ) {}
     20VarArgsType::VarArgsType( Type::Qualifiers tq ) : Type( tq ) {}
    2121
    2222void VarArgsType::print( std::ostream &os, int indent ) const {
Note: See TracChangeset for help on using the changeset viewer.