-
Enhancement
-
Resolution: Unresolved
-
Low
-
Code Generation Tools
-
CODEGEN-8265
-
-
default
The attached file has these lines ...
#pragma SET_DATA_SECTION("RMS_Data") struct sss array1[3]; struct sss array2[3]; struct sss array3[3];
Build it ...
% cl2000 -s --gen_data_subsections=on try1.c
Inspect the resulting assembly file ...
% findstr usect try1.asm _array1: .usect "RMS_Data",1818,1,1 _array2: .usect "RMS_Data",1818,1,1 _array3: .usect "RMS_Data",1818,1,1
These entries to create the arrays should have subsection names like "RMS_Data:_array1".