* src/SDCCptropt.c (ptrPseudoSymConvert): fixed bug 1536762
[fw/sdcc] / support / regression / tests / bug1496419.c
index 192686065cc3c3034681468600bb4b306e055af4..b23b09286444f5eda79769aed9e921dd3d1c500e 100644 (file)
@@ -1,21 +1,25 @@
-/*\r
-   bug1057979.c\r
-*/\r
-\r
-#include <testfwk.h>\r
-\r
-typedef struct _NODE\r
-{\r
-  const struct _NODE * enter;\r
-  const struct _NODE * down;\r
-}NODE;\r
-\r
-const NODE node1 = {NULL, NULL};\r
-\r
-//sdcc loops allocating space for new symbols node1 and\r
-//zzz until there is no more memory, then segfaults\r
-//\r
-//The reference to zzz inside the declaration of zzz\r
-//triggers a loop allocating space for symbols node1\r
-//and zzz\r
-const NODE zzz = {&node1, &zzz};\r
+/*
+   bug1496419.c
+*/
+
+#include <testfwk.h>
+
+typedef struct _NODE
+{
+  const struct _NODE * enter;
+  const struct _NODE * down;
+}NODE;
+
+const NODE node1 = {NULL, NULL};
+
+//sdcc loops allocating space for new symbols node1 and
+//zzz until there is no more memory, then segfaults
+//
+//The reference to zzz inside the declaration of zzz
+//triggers a loop allocating space for symbols node1
+//and zzz
+const NODE zzz = {&node1, &zzz};
+
+void testBug(void)
+{
+}