1
2
3
4
5
6
7
8
9
10
|
#! /bin/sh
# $Id$
# $Log$
# Revision 1.7.2.1 2002/09/04 10:44:59 geraint
# Added option to specify number of tmp variables declared (-ntmpvar <N>).
#
# Revision 1.7 2002/07/10 11:53:32 geraint
# Replaced shell loop with template expansion - perceptibly quicker generation of sympar.h.
#
# Revision 1.6 2002/05/19 13:01:22 geraint
|
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
# $Id$
# $Log$
# Revision 1.8 2002/09/16 08:08:01 geraint
# Merged changes from global-optimisation branch.
#
# Revision 1.7.2.1 2002/09/04 10:44:59 geraint
# Added option to specify number of tmp variables declared (-ntmpvar <N>).
#
# Revision 1.7 2002/07/10 11:53:32 geraint
# Replaced shell loop with template expansion - perceptibly quicker generation of sympar.h.
#
# Revision 1.6 2002/05/19 13:01:22 geraint
|
1111
1112
1113
1114
1115
1116
1117
1118
1119
|
#define MTT_UNUSED
#endif
#endif
EOF
declare_sys_param >> ${OUT}
declare_temp_vars >> ${OUT}
|
>
|
>
>
|
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
|
#define MTT_UNUSED
#endif
#endif
EOF
declare_sys_param >> ${OUT}
if [ ${NUM_OF_TMP_VAR} -gt 0 ]; then
declare_temp_vars >> ${OUT}
fi
|