From: borutr Date: Sun, 22 Apr 2007 16:59:19 +0000 (+0000) Subject: "__code" keyword replaces with "code" macro X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=62ef71465876383f7217fcfa4675e552e9d9fbe4;p=fw%2Fsdcc "__code" keyword replaces with "code" macro git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4765 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/support/regression/tests/bug-1699804.c b/support/regression/tests/bug-1699804.c index f11478bf..b63d0a77 100644 --- a/support/regression/tests/bug-1699804.c +++ b/support/regression/tests/bug-1699804.c @@ -4,12 +4,12 @@ #include -static __code const char Str_global[] = "Hello1"; +static code const char Str_global[] = "Hello1"; char s1, s2; void testFoo(void) { - static __code const char str_local[] = "Hello2"; + static code const char str_local[] = "Hello2"; static char str1[sizeof(Str_global)]; static char str2[sizeof(str_local)]; // causes error 20: Undefined identifier 'str_local'