blob: afabaf133886057a6a6b11b8fa9ea46631a7baa9 (
plain) (
blame)
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
|
/*
bug3037889.c
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma disable_warning 88 //no warning about casting LITERAL value to 'generic' pointer
#endif
/* causes error 9: FATAL Compiler Internal Error in file 'SDCCicode.c' line number '2939' : code generator internal error
Contact Author with source code
Internal error: validateLink failed in DCL_TYPE(ptr) @ SDCCicode.c:2887: expected DECLARATOR, got SPECIFIER
And on ds390 this further on caused also:
Internal error: validateOpType failed in OP_SYMBOL(result) @ gen.c:11914: expected symbol, got value */
void Bug3037889 (void)
{
*((char *) 0x42e0 - 1) = 1; /* compiler crashes */
*((char *) 0x42e0 + 1) = 1; /* works fine */
*((char *) (0x42e0 - 1)) = 1; /* works fine */
}
/* Infinite loop should not be executed, caused:
Internal error: validateOpType failed in OP_SYMBOL(IC_RESULT (ic)) @ SDCCloop.c:1024: expected symbol, got value */
void Bug3034976 (void)
{
while (1)
{
*(unsigned char __data *)0 = 0;
}
}
/* caused error 9: FATAL Compiler Internal Error in file '/SDCCicode.c' line number '2865' : code generator internal error
Contact Author with source code
Internal error: validateLink failed in DCL_TYPE(ptr) @ SDCCicode.c:2813: expected DECLARATOR, got SPECIFIER */
void Bug3153956 (void)
{
((char volatile __xdata *)0)[1] = 0;
}
/*
* dummy test to be executed, to get rid of regression test warning:
* Empty function list in ../../../sdcc/support/regression/tests/bug3037889.c!
*/
void testDummy (void)
{
}
|