Displaying 1 result from an estimated 1 matches for "numrec".
Did you mean:
numres
2011 Jul 03
0
[LLVMdev] where define the TARGET_80387 in md file ?
...unctions.awk -f
../../llvm-gcc-4.2-2.9.source/gcc/opth-gen.awk \
< optionlist > tmp-options.h
/bin/sh ../../llvm-gcc-4.2-2.9.source/gcc/../move-if-change
tmp-options.h options.h
in the first step, /opt-gather.awk can write ONLY 7 line into
tmp-optionlist, actual in its code "numrec" is 745
# Sort it and output it
END {
sort(record,numrec)
for (i = 1; i <= numrec; i++) {//this loop execute only 7,
although numrec=745
print record[i] }
}
I try to explicitly changeto : for (i = 1; i <= 745; i++)
but there occurs redefinition error, I think optli...