1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/*
!!DESCRIPTION!!
!!ORIGIN!! SDCC regression tests
!!LICENCE!! GPL, read COPYING.GPL
*/
#include <stdio.h>
#include <limits.h>
unsigned char success=0;
unsigned char failures=0;
unsigned char dummy=0;
unsigned int uint0 = 0;
unsigned int uint1 = 0;
unsigned char uchar0 = 0;
unsigned char uchar1 = 0;
unsigned long ulong0 = 0;
void done()
{
dummy++;
}
/* uchar0 = 0x13; */
void and_compound1(void)
{
uchar0 = (uchar0 + 1) & 0x0f;
if(uchar0 != 4)
failures++;
}
/* uchar1 = 0x42; */
void and_compound2(void)
{
uchar0 = (uchar1 + 1) & 0x0f;
if(uchar0 != 3)
failures++;
if(uchar1 != 0x42)
failures++;
}
/* uchar0 = 0x13; */
void or_compound1(void)
{
uchar0 = (uchar0 + 0xe) | 0x0f;
if(uchar0 != 0x2f)
failures++;
}
/* uchar1 = 0x47; */
void or_compound2(void)
{
uchar0 = (uchar1 + 0xf) | 0x0f;
if(uchar0 != 0x5f)
failures++;
if(uchar1 != 0x47)
failures++;
}
/* uchar0 = 0x13; */
void xor_compound1(void)
{
uchar0 = (uchar0 + 1) ^ 0x0f;
if(uchar0 != 0x1b)
failures++;
}
/* uchar1 = 0x47; */
void xor_compound2(void)
{
uchar0 = (uchar1 + 0xf) ^ 0x0f;
if(uchar0 != 0x59)
failures++;
if(uchar1 != 0x47)
failures++;
}
/* uchar0 = 0x13; */
void neg_compound1(void)
{
uchar0 = ~(uchar0 + 1);
if(uchar0 != 0xeb)
failures++;
}
int main(void)
{
uchar0 = 0x13;
and_compound1();
uchar1 = 0x42;
and_compound2();
uchar0 = 0x13;
or_compound1();
uchar1 = 0x47;
or_compound2();
uchar0 = 0x13;
xor_compound1();
uchar1 = 0x47;
xor_compound2();
uchar0 = 0x13;
neg_compound1();
success = failures;
done();
printf("failures: %d\n",failures);
return failures;
}
|