Changeset 227 for soft/giet_vm


Ignore:
Timestamp:
Dec 19, 2012, 1:41:30 PM (12 years ago)
Author:
cfuguet
Message:

Fixing bug in MeMo?. Adding forgotten initialization
of m_type member of a physical segment in the copy contructor of
PSEG class

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/memo/src/pseg.cpp

    r224 r227  
    352352    m_nextLma = ref.m_nextLma;
    353353    m_vsegs = ref.m_vsegs;
     354    m_type = ref.m_type;
    354355
    355356        return *this;
     
    364365      << ", size : "  << m_length
    365366      << ", filled to: "  << m_nextLma
     367      << ", type : "  << m_type
    366368      << ", containing: "<< std::endl;
    367369        std::vector<VSeg>::const_iterator it;
Note: See TracChangeset for help on using the changeset viewer.