summaryrefslogtreecommitdiff
path: root/util/romcc/tests/simple_test67.c
blob: 70d7170292c56098e8da3c6295bac8c9e4eae744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
static void main(void)
{
	unsigned int dch, dcl;
/* HERE I AM  async_lat */
	unsigned async_lat;
	int dimms;
	dimms = 1;
	async_lat = 0;
	dch = 0x1234;
	dcl = __builtin_inl(0x5678);
	if (!(dcl & (1 << 8))) {
		if (dimms == 4) {
			async_lat = 9;
		}
		else {
			async_lat = 8;
		}
	}
	else {
		async_lat = 6;
	}
	dch |= async_lat;
	__builtin_outl(dch, 0x9abc);
}