Subversion Repositories Kolibri OS

Rev

Rev 6446 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6446 GerdtR 1
#define _NEW_TYPE_
2
 
3
 
4
 
5
void convert_type(int *sign,int *rettype,int *pointr,int reg)
6
 
7
 
8
 
9
		nexttok();
10
 
11
	}
12
 
13
		case tk_byte:
14
 
15
		case tk_dword:
16
 
17
		case tk_double:
18
 
19
			*sign=0;
20
 
21
			if(usebracket)nexttok();
22
 
23
			break;
24
 
25
		case tk_int:
26
 
27
			*sign=1;
28
 
29
			if(usebracket)nexttok();
30
 
31
			break;
32
 
33
	if(usebracket){
34
 
35
			nexttok();
36
 
37
		}
38
 
39
		else getoperand(reg);
40
 
41
}
42
 
43