Changeset d63eeb0 for src/InitTweak


Ignore:
Timestamp:
Feb 9, 2016, 3:25:05 PM (8 years ago)
Author:
Rob Schluntz <rschlunt@…>
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, with_gc
Children:
7528ba1
Parents:
771b3c3 (diff), bd85400 (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' into ctor

Conflicts:

src/CodeGen/CodeGenerator.cc
src/GenPoly/Box.cc
src/Makefile.in
src/Parser/ParseNode.h
src/Parser/parser.cc
src/Parser/parser.yy
src/SymTab/Validate.cc
src/SynTree/Initializer.h
src/SynTree/ObjectDecl.cc
src/SynTree/Visitor.h
src/main.cc

Location:
src/InitTweak
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/BasicInit.cc

    r771b3c3 rd63eeb0  
    2020#include <algorithm>
    2121
    22 #include "utility.h"
     22#include "Common/utility.h"
    2323
    2424#include "SynTree/Type.h"
  • src/InitTweak/DeclarationHoister.cc

    r771b3c3 rd63eeb0  
    2020#include <algorithm>
    2121
    22 #include "utility.h"
     22#include "Common/utility.h"
    2323
    2424#include "SynTree/Statement.h"
  • src/InitTweak/InitExpander.cc

    r771b3c3 rd63eeb0  
    1919#include <algorithm>
    2020
    21 #include "utility.h"
     21#include "Common/utility.h"
    2222#include "InitExpander.h"
    2323#include "InitModel.h"
  • src/InitTweak/InitExpander.h

    r771b3c3 rd63eeb0  
    1919#include <string>
    2020
    21 #include "utility.h"
     21#include "Common/utility.h"
    2222#include "SynTree/Mutator.h"
    2323#include "SymTab/Indexer.h"
  • src/InitTweak/InitModel.h

    r771b3c3 rd63eeb0  
    1818
    1919#include "Association.h"
    20 #include "SemanticError.h"
     20#include "Common/SemanticError.h"
    2121#include "SynTree/Visitor.h"
    2222
     
    7373                        void visit( SizeofExpr * ) { throw 0; }
    7474                        void visit( AlignofExpr * ) { throw 0; }
     75                        void visit( UntypedOffsetofExpr * ) { throw 0; }
     76                        void visit( OffsetofExpr * ) { throw 0; }
    7577                        void visit( AttrExpr * ) { throw 0; }
    7678                        void visit( LogicalExpr * ) { throw 0; }
  • src/InitTweak/RemoveInit.cc

    r771b3c3 rd63eeb0  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Rob Schluntz
    12 // Last Modified On : Tue Jan 19 11:12:49 2016
    13 // Update Count     : 165
     12// Last Modified On : Tue Feb 09 15:12:29 2016
     13// Update Count     : 166
    1414//
    1515
     
    223223                std::list< Statement * > &statements = ret->get_kids();
    224224                if ( ! destructorStmts.empty() ) {
     225                        // TODO: adding to the end of a block isn't sufficient, since
     226                        // return/break/goto should trigger destructor when block is left.
    225227                        statements.splice( statements.end(), destructorStmts );
    226228                } // if
Note: See TracChangeset for help on using the changeset viewer.