* src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
[fw/sdcc] / support / regression / tests / bug-227710.c
index bd16d6697d69a414fbc8352dd87039e47f63b400..013ddea84fba74ab55ef370b480b3ddeb2cc4557 100644 (file)
@@ -2,7 +2,7 @@
  */
 #include <testfwk.h>
 
-static unsigned char __data[] = {
+static unsigned char dataset[] = {
     1, 2, 3, 4
 };
 
@@ -22,7 +22,7 @@ foo(void)
 void
 testPostIncrement(void)
 {
-    p = __data;
+    p = dataset;
     ASSERT(foo() == 1);
     ASSERT(foo() == 2);
     ASSERT(foo() == 3);