Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/CodeGen/CodeGenerator.cc

    rafc1045 r2a4b088  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Mar  2 17:32:16 2016
    13 // Update Count     : 243
     12// Last Modified On : Mon Jan 25 21:22:00 2016
     13// Update Count     : 242
    1414//
    1515
     
    2121#include "Parser/ParseNode.h"
    2222
    23 #include "SynTree/Declaration.h"
     23#include "SynTree/Type.h"
    2424#include "SynTree/Expression.h"
    2525#include "SynTree/Initializer.h"
    2626#include "SynTree/Statement.h"
    27 #include "SynTree/Type.h"
    2827
    2928#include "Common/utility.h"
     
    171170        }
    172171 
    173         void CodeGenerator::visit( TraitDecl *aggregateDecl ) {}
     172        void CodeGenerator::visit( ContextDecl *aggregateDecl ) {}
    174173 
    175174        void CodeGenerator::visit( TypedefDecl *typeDecl ) {
     
    455454
    456455        void CodeGenerator::visit( UntypedOffsetofExpr *offsetofExpr ) {
    457                 assert( false && "UntypedOffsetofExpr should not reach code generation" );
     456                assert( false );
    458457        }
    459458
     
    464463                output << ", " << mangleName( offsetofExpr->get_member() );
    465464                output << ")";
    466         }
    467 
    468         void CodeGenerator::visit( OffsetPackExpr *offsetPackExpr ) {
    469                 assert( false && "OffsetPackExpr should not reach code generation" );
    470465        }
    471466 
Note: See TracChangeset for help on using the changeset viewer.