Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/FixFunction.cc

    rd53772d r4bda2cf  
    3030                // can't delete function type because it may contain assertions, so transfer ownership to new object
    3131                ObjectDecl *pointer = new ObjectDecl( functionDecl->name, functionDecl->get_storageClasses(), functionDecl->linkage, nullptr, new PointerType( Type::Qualifiers(), functionDecl->type ), nullptr, functionDecl->attributes );
    32                 pointer->location = functionDecl->location;
    3332                functionDecl->attributes.clear();
    3433                functionDecl->type = nullptr;
     
    4443                // need to recursively mutate the base type in order for multi-dimensional arrays to work.
    4544                PointerType *pointerType = new PointerType( arrayType->get_qualifiers(), arrayType->base, arrayType->dimension, arrayType->isVarLen, arrayType->isStatic );
    46                 pointerType->location = arrayType->location;
    4745                arrayType->base = nullptr;
    4846                arrayType->dimension = nullptr;
Note: See TracChangeset for help on using the changeset viewer.