Ignore:
Timestamp:
Aug 17, 2017, 3:42:21 PM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
e50e9ff
Parents:
97e3296 (diff), 21f0aa8 (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/Tuples/TupleExpansion.cc

    r97e3296 r6ac5223  
    1414//
    1515
    16 #include <iterator>
    17 #include <iostream>
    18 #include <cassert>
    19 #include "Tuples.h"
    20 #include "Common/PassVisitor.h"
    21 #include "Common/ScopedMap.h"
    22 #include "GenPoly/DeclMutator.h"
    23 #include "InitTweak/GenInit.h"
    24 #include "InitTweak/InitTweak.h"
    25 #include "ResolvExpr/typeops.h"
    26 #include "SymTab/Mangler.h"
    27 #include "SynTree/Declaration.h"
    28 #include "SynTree/Expression.h"
    29 #include "SynTree/Initializer.h"
    30 #include "SynTree/Mutator.h"
    31 #include "SynTree/Statement.h"
    32 #include "SynTree/Type.h"
     16#include <stddef.h>               // for size_t
     17#include <cassert>                // for assert
     18#include <list>                   // for list
     19
     20#include "Common/PassVisitor.h"   // for PassVisitor, WithDeclsToAdd, WithGu...
     21#include "Common/ScopedMap.h"     // for ScopedMap
     22#include "Common/utility.h"       // for CodeLocation
     23#include "GenPoly/DeclMutator.h"  // for DeclMutator
     24#include "InitTweak/InitTweak.h"  // for getFunction
     25#include "Parser/LinkageSpec.h"   // for Spec, C, Intrinsic
     26#include "SynTree/Constant.h"     // for Constant
     27#include "SynTree/Declaration.h"  // for StructDecl, DeclarationWithType
     28#include "SynTree/Expression.h"   // for UntypedMemberExpr, Expression, Uniq...
     29#include "SynTree/Label.h"        // for operator==, Label
     30#include "SynTree/Mutator.h"      // for Mutator
     31#include "SynTree/Type.h"         // for Type, Type::Qualifiers, TupleType
     32#include "SynTree/Visitor.h"      // for Visitor
     33
     34class CompoundStmt;
     35class TypeSubstitution;
    3336
    3437namespace Tuples {
Note: See TracChangeset for help on using the changeset viewer.