2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
2012-03-24 14:06:46 -04:00
|
|
|
* Copyright 2001, 2011 Fidelity Information Services, Inc *
|
2012-02-05 11:35:58 -05:00
|
|
|
* *
|
|
|
|
* This source code contains the intellectual property *
|
|
|
|
* of its copyright holder(s), and is made available *
|
|
|
|
* under a license. If you do not know the terms of *
|
|
|
|
* the license, please stop and do not read further. *
|
|
|
|
* *
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include "mdef.h"
|
|
|
|
|
|
|
|
#include "gtm_string.h"
|
|
|
|
|
|
|
|
#include "compiler.h"
|
|
|
|
#include "toktyp.h"
|
|
|
|
|
|
|
|
void int_label(void)
|
|
|
|
{
|
|
|
|
int len;
|
2012-03-24 14:06:46 -04:00
|
|
|
DCL_THREADGBL_ACCESS;
|
2012-02-05 11:35:58 -05:00
|
|
|
|
2012-03-24 14:06:46 -04:00
|
|
|
SETUP_THREADGBL_ACCESS;
|
|
|
|
TREF(window_token) = TK_IDENT;
|
|
|
|
len = (TREF(window_mval)).str.len;
|
2012-02-05 11:35:58 -05:00
|
|
|
len = (len < MAX_MIDENT_LEN) ? len: MAX_MIDENT_LEN;
|
2012-03-24 14:06:46 -04:00
|
|
|
memcpy((TREF(window_ident)).addr, (TREF(window_mval)).str.addr, len);
|
|
|
|
(TREF(window_ident)).len = len;
|
2012-02-05 11:35:58 -05:00
|
|
|
}
|