*******************************************************************************
*** GNU17 BUG REPORT **********************************************************
*******************************************************************************
Registration No.    :C17_007_gdb
Issue and revision  :2009/01/07

--- <Tool name / Object version> ----------------------------------------------
GNU17V1.4.0 or earlier

--- <Content> -----------------------------------------------------------------
When the structure is registered in the Watch window, the value of the member 
of the structure is not correct occasionally.

--- <Generation condition> ----------------------------------------------------
Connect Mode : ICD Mode
Size of structure : more than 1024 byte
Kind of member who doesn't correctly display it : 
                char, unsigned char, int, unsigned int, short, unsigned short,
                long, unsigned long, long long, unsigned long long, pointer

 Example:
  Structure ST_SAMPLE in 1025 bytes or more is registered in the Watch window.

        struct SAMPLE
        {
            char    szDim[2000];        //The array displays a correct value.
            int     iData2;             //A value not correct is displayed.
            long    lData1;             //A value not correct is displayed.
        };

        struct SAMPLE ST_SAMPLE;


---- <Temporary Measures> -----------------------------------------------------
*The size of the structure is adjusted to 1024 bytes or less. In this case, 
 it is necessary to correct the program. 
*Only the member of the structure that wants to be displayed is registered 
 to the Watch window. 

 Example:
        ST_SAMPLE.iData2 is registered to the Watch window. 

*After the structure is substituted for the structure variable of the 
 pointer type, it registers to the Watch window. 

 Example:
        SAMPLE *pST_SAMPLE = ST_SAMPLE;
        pST_SAMPLE is registered to the Watch window. 

--- <About the correction version> --------------------------------------------
Patch: None
Product version: GNU17V1.5.0 and later

