Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
/*
2
    		 Crown Copyright (c) 1997
3
 
4
    This TenDRA(r) Computer Program is subject to Copyright
5
    owned by the United Kingdom Secretary of State for Defence
6
    acting through the Defence Evaluation and Research Agency
7
    (DERA).  It is made available to Recipients with a
8
    royalty-free licence for its use, reproduction, transfer
9
    to other parties and amendment for any purpose not excluding
10
    product development provided that any such use et cetera
11
    shall be deemed to be acceptance of the following conditions:-
12
 
13
        (1) Its Recipients shall ensure that this Notice is
14
        reproduced upon any copies or amended versions of it;
15
 
16
        (2) Any amended version of it shall be clearly marked to
17
        show both the nature of and the organisation responsible
18
        for the relevant amendment or amendments;
19
 
20
        (3) Its onward transfer from a recipient to another
21
        party shall be deemed to be that party's acceptance of
22
        these conditions;
23
 
24
        (4) DERA gives no warranty or assurance as to its
25
        quality or suitability for any purpose and DERA accepts
26
        no liability whatsoever in relation to any use to which
27
        it may be put.
28
*/
29
 
30
 
31
/**********************************************************************
32
$Author: release $
33
$Date: 1998/01/17 15:55:47 $
34
$Revision: 1.1.1.1 $
35
$Log: installglob.h,v $
36
 * Revision 1.1.1.1  1998/01/17  15:55:47  release
37
 * First version to be checked into rolling release.
38
 *
39
 * Revision 1.5  1997/08/23  13:24:27  pwe
40
 * no invert order, and NEWDIAGS inlining
41
 *
42
 * Revision 1.4  1996/10/29  10:10:51  currie
43
 * 512 bit alignment for hppa
44
 *
45
 * Revision 1.3  1995/09/19  16:06:51  currie
46
 * isAlpha!!
47
 *
48
 * Revision 1.2  1995/07/06  09:14:01  currie
49
 * rem & VERSION
50
 *
51
 * Revision 1.1  1995/04/06  10:44:05  currie
52
 * Initial revision
53
 *
54
***********************************************************************/
55
#ifndef installglob_key
56
#define installglob_key 1
57
 
58
 
59
 
60
extern exp crt_repeat;
61
extern exp repeat_list;
62
extern exp global_case;
63
extern dec * top_def;
64
extern dec ** deflist_end;
65
extern aldef * top_aldef;
66
 
67
extern int has_alloca;
68
extern int has_lv;
69
extern int proc_is_recursive;
70
extern int uses_crt_env;
71
extern int must_use_bp;
72
extern int has_setjmp;
73
extern int uses_loc_address;
74
extern int proc_struct_res;
75
extern int proc_label_count;
76
extern float default_freq;
77
extern int proc_externs;
78
extern int flpt_always_comparable;
79
extern int report_versions;
80
extern int indirect_jumps;
81
extern int do_unroll;
82
 
83
extern exp proc_struct_result;
84
extern char * dynamic_init_proc;
85
extern proc_props * old_proc_props;
86
 
87
extern version global_version;
88
 
89
extern int in_proc_def;
90
extern int flpt_const_overflow_fail;
91
 
92
extern aldef const_aldefs[6];
93
extern int doing_aldefs;
94
extern alignment const_al1;
95
extern alignment const_al8;
96
extern alignment const_al16;
97
extern alignment const_al32;
98
extern alignment const_al64;
99
extern alignment const_al512;
100
 
101
extern int ptr_null;
102
extern int proc_null;
103
extern int lv_null;
104
 
105
extern int no_bss;
106
 
107
#define MAJOR_VERSION 4
108
#define MINOR_VERSION 1
109
 
110
#endif