blob: 73116b6facdf2cd7c5f0bdf5eea817fed2c12e02 [file] [log] [blame]
sewardj024598e2008-09-18 14:43:05 +00001#include <stdio.h>
2#include <stdlib.h>
3#include <signal.h>
4#include <setjmp.h>
5#include <assert.h>
6
7#include "arith_include1.c"
8int aaa(void) { int x = 0x66; return x; }
9int bbb(void) { return 0x55; }
10int main(void)
11{
12 #include "arith_include2.c"
13
14 // SUB =========================================================
15 g(-, n, n2, n); // det, det // undet, undet?
16
17 g(-, n, p, e); // det, det
18
19 g(-, p, n, p); // ok, det
20
21 g(-, p, pp, B); // det, det
22
23 g(-, n, un, u); // undet, undet
24 g(-, n, up, u); // undet, undet
25
26 g(-, un, n, u); // undet, undet
27 g(-, up, n, u); // ok, undet
28
29 g(-, un, un2,u); // det, det
30 g(-, un, up, u); // undet, undet
31 g(-, up, un, u); // ok, undet
32 g(-, up, up, u); // det, det
33
34 g(-, un, p, B); // undet, undet
35 g(-, up, p, B); // undet, undet
36
37 g(-, p, un, p); // det, det
38 g(-, p, up, p); // det, det
39
40 return 0;
41}