* Fixed svn:eol-style and svn:keywords properties
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 29 Apr 2007 15:02:49 +0000 (15:02 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 29 Apr 2007 15:02:49 +0000 (15:02 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4778 4a8a32a2-be11-0410-ad9d-d568d2c75423

14 files changed:
device/lib/pic/libdev/p16c620a.c [deleted file]
support/cpp2/c-incpath.c
support/regression/tests/bug-1406131.c [changed mode: 0755->0644]
support/regression/tests/bug-1654060.c
support/regression/tests/bug1273984.c
support/regression/tests/bug1399290.c
support/regression/tests/bug1496419.c
support/regression/tests/bug1503067.c
support/regression/tests/bug1520966.c
support/regression/tests/bug1546986.c
support/regression/tests/bug1551947.c
support/regression/tests/bug608752.c
support/regression/tests/shifts2.c
support/regression/tests/while.c

diff --git a/device/lib/pic/libdev/p16c620a.c b/device/lib/pic/libdev/p16c620a.c
deleted file mode 100644 (file)
index e69de29..0000000
index 8ae9e554f97d77cea393d7e652e108f1a52bb0bb..014f8defd27d8d4348d761ea24770e7a260b2b83 100644 (file)
-/* Set up combined include path chain for the preprocessor.\r
-   Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,\r
-   1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.\r
-\r
-   Broken out of cppinit.c and cppfiles.c and rewritten Mar 2003.\r
-\r
-This program is free software; you can redistribute it and/or modify it\r
-under the terms of the GNU General Public License as published by the\r
-Free Software Foundation; either version 2, or (at your option) any\r
-later version.\r
-\r
-This program is distributed in the hope that it will be useful,\r
-but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-GNU General Public License for more details.\r
-\r
-You should have received a copy of the GNU General Public License\r
-along with this program; if not, write to the Free Software\r
-Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */\r
-\r
-#include "config.h"\r
-#include "system.h"\r
-#include "cpplib.h"\r
-#include "prefix.h"\r
-#include "intl.h"\r
-#include "c-incpath.h"\r
-#include "cppdefault.h"\r
-\r
-/* Windows does not natively support inodes, and neither does MSDOS.\r
-   Cygwin's emulation can generate non-unique inodes, so don't use it.\r
-   VMS has non-numeric inodes.  */\r
-#ifdef VMS\r
-# define INO_T_EQ(A, B) (!memcmp (&(A), &(B), sizeof (A)))\r
-# define INO_T_COPY(DEST, SRC) memcpy(&(DEST), &(SRC), sizeof (SRC))\r
-#else\r
-# if (defined _WIN32 && !defined (_UWIN)) || defined __MSDOS__\r
-#  define INO_T_EQ(A, B) 0\r
-# else\r
-#  define INO_T_EQ(A, B) ((A) == (B))\r
-# endif\r
-# define INO_T_COPY(DEST, SRC) (DEST) = (SRC)\r
-#endif\r
-\r
-static void add_env_var_paths (const char *, int);\r
-static void add_standard_paths (const char *, const char *, int);\r
-static void free_path (struct cpp_dir *, int);\r
-static void merge_include_chains (cpp_reader *, int);\r
-static struct cpp_dir *remove_duplicates (cpp_reader *, struct cpp_dir *,\r
-                                          struct cpp_dir *,\r
-                                          struct cpp_dir *, int);\r
-\r
-/* Include chains heads and tails.  */\r
-static struct cpp_dir *heads[4];\r
-static struct cpp_dir *tails[4];\r
-static bool quote_ignores_source_dir;\r
-enum { REASON_QUIET = 0, REASON_NOENT, REASON_DUP, REASON_DUP_SYS };\r
-\r
-/* Free an element of the include chain, possibly giving a reason.  */\r
-static void\r
-free_path (struct cpp_dir *path, int reason)\r
-{\r
-  switch (reason)\r
-    {\r
-    case REASON_DUP:\r
-    case REASON_DUP_SYS:\r
-      fprintf (stderr, _("ignoring duplicate directory \"%s\"\n"), path->name);\r
-      if (reason == REASON_DUP_SYS)\r
-       fprintf (stderr,\r
- _("  as it is a non-system directory that duplicates a system directory\n"));\r
-      break;\r
-\r
-    case REASON_NOENT:\r
-      fprintf (stderr, _("ignoring nonexistent directory \"%s\"\n"),\r
-              path->name);\r
-      break;\r
-\r
-    case REASON_QUIET:\r
-    default:\r
-      break;\r
-    }\r
-\r
-  free (path->name);\r
-  free (path);\r
-}\r
-\r
-/* Read ENV_VAR for a PATH_SEPARATOR-separated list of file names; and\r
-   append all the names to the search path CHAIN.  */\r
-static void\r
-add_env_var_paths (const char *env_var, int chain)\r
-{\r
-  char *p, *q, *path;\r
-\r
-  GET_ENVIRONMENT (q, env_var);\r
-\r
-  if (!q)\r
-    return;\r
-\r
-  for (p = q; *q; p = q + 1)\r
-    {\r
-      q = p;\r
-      while (*q != 0 && *q != PATH_SEPARATOR)\r
-       q++;\r
-\r
-      if (p == q)\r
-       path = xstrdup (".");\r
-      else\r
-       {\r
-         path = xmalloc (q - p + 1);\r
-         memcpy (path, p, q - p);\r
-         path[q - p] = '\0';\r
-       }\r
-\r
-      add_path (path, chain, chain == SYSTEM, false);\r
-    }\r
-}\r
-\r
-/* Append the standard include chain defined in cppdefault.c.  */\r
-static void\r
-add_standard_paths (const char *sysroot, const char *iprefix, int cxx_stdinc)\r
-{\r
-  const struct default_include *p;\r
-  size_t len;\r
-\r
-  if (iprefix && (len = cpp_GCC_INCLUDE_DIR_len) != 0)\r
-    {\r
-      /* Look for directories that start with the standard prefix.\r
-        "Translate" them, i.e. replace /usr/local/lib/gcc... with\r
-        IPREFIX and search them first.  */\r
-      for (p = cpp_include_defaults; p->fname; p++)\r
-       {\r
-         if (!p->cplusplus || cxx_stdinc)\r
-           {\r
-             /* Should we be translating sysrooted dirs too?  Assume\r
-                that iprefix and sysroot are mutually exclusive, for\r
-                now.  */\r
-             if (sysroot && p->add_sysroot)\r
-               continue;\r
-             if (!strncmp (p->fname, cpp_GCC_INCLUDE_DIR, len))\r
-               {\r
-                 char *str = concat (iprefix, p->fname + len, NULL);\r
-                 add_path (str, SYSTEM, p->cxx_aware, false);\r
-               }\r
-           }\r
-       }\r
-    }\r
-\r
-  for (p = cpp_include_defaults; p->fname; p++)\r
-    {\r
-      if (!p->cplusplus || cxx_stdinc)\r
-       {\r
-         char *str;\r
-\r
-         /* Should this directory start with the sysroot?  */\r
-         if (sysroot && p->add_sysroot)\r
-           str = concat (sysroot, p->fname, NULL);\r
-         else\r
-           str = update_path (p->fname, p->component);\r
-\r
-         add_path (str, SYSTEM, p->cxx_aware, false);\r
-       }\r
-    }\r
-}\r
-\r
-/* For each duplicate path in chain HEAD, keep just the first one.\r
-   Remove each path in chain HEAD that also exists in chain SYSTEM.\r
-   Set the NEXT pointer of the last path in the resulting chain to\r
-   JOIN, unless it duplicates JOIN in which case the last path is\r
-   removed.  Return the head of the resulting chain.  Any of HEAD,\r
-   JOIN and SYSTEM can be NULL.  */\r
-\r
-static struct cpp_dir *\r
-remove_duplicates (cpp_reader *pfile, struct cpp_dir *head,\r
-                  struct cpp_dir *system, struct cpp_dir *join,\r
-                  int verbose)\r
-{\r
-  struct cpp_dir **pcur, *tmp, *cur;\r
-  struct stat st;\r
-\r
-  for (pcur = &head; *pcur; )\r
-    {\r
-      int reason = REASON_QUIET;\r
-\r
-      cur = *pcur;\r
-\r
-      if (stat (cur->name, &st))\r
-       {\r
-         /* Dirs that don't exist are silently ignored, unless verbose.  */\r
-         if (errno != ENOENT)\r
-           cpp_errno (pfile, CPP_DL_ERROR, cur->name);\r
-         else\r
-           {\r
-             /* If -Wmissing-include-dirs is given, warn.  */\r
-             cpp_options *opts = cpp_get_options (pfile);\r
-             if (opts->warn_missing_include_dirs && cur->user_supplied_p)\r
-               cpp_errno (pfile, CPP_DL_WARNING, cur->name);\r
-             reason = REASON_NOENT;\r
-           }\r
-       }\r
-      else if (!S_ISDIR (st.st_mode))\r
-       cpp_error_with_line (pfile, CPP_DL_ERROR, 0, 0,\r
-                            "%s: not a directory", cur->name);\r
-      else\r
-       {\r
-         INO_T_COPY (cur->ino, st.st_ino);\r
-         cur->dev  = st.st_dev;\r
-\r
-         /* Remove this one if it is in the system chain.  */\r
-         reason = REASON_DUP_SYS;\r
-         for (tmp = system; tmp; tmp = tmp->next)\r
-           if (INO_T_EQ (tmp->ino, cur->ino) && tmp->dev == cur->dev\r
-               && cur->construct == tmp->construct)\r
-             break;\r
-\r
-         if (!tmp)\r
-           {\r
-             /* Duplicate of something earlier in the same chain?  */\r
-             reason = REASON_DUP;\r
-             for (tmp = head; tmp != cur; tmp = tmp->next)\r
-               if (INO_T_EQ (cur->ino, tmp->ino) && cur->dev == tmp->dev\r
-                   && cur->construct == tmp->construct)\r
-                 break;\r
-\r
-             if (tmp == cur\r
-                 /* Last in the chain and duplicate of JOIN?  */\r
-                 && !(cur->next == NULL && join\r
-                      && INO_T_EQ (cur->ino, join->ino)\r
-                      && cur->dev == join->dev\r
-                      && cur->construct == join->construct))\r
-               {\r
-                 /* Unique, so keep this directory.  */\r
-                 pcur = &cur->next;\r
-                 continue;\r
-               }\r
-           }\r
-       }\r
-\r
-      /* Remove this entry from the chain.  */\r
-      *pcur = cur->next;\r
-      free_path (cur, verbose ? reason: REASON_QUIET);\r
-    }\r
-\r
-  *pcur = join;\r
-  return head;\r
-}\r
-\r
-/* Merge the four include chains together in the order quote, bracket,\r
-   system, after.  Remove duplicate dirs (as determined by\r
-   INO_T_EQ()).\r
-\r
-   We can't just merge the lists and then uniquify them because then\r
-   we may lose directories from the <> search path that should be\r
-   there; consider -iquote foo -iquote bar -Ifoo -Iquux.  It is\r
-   however safe to treat -iquote bar -iquote foo -Ifoo -Iquux as if\r
-   written -iquote bar -Ifoo -Iquux.  */\r
-\r
-static void\r
-merge_include_chains (cpp_reader *pfile, int verbose)\r
-{\r
-  /* Join the SYSTEM and AFTER chains.  Remove duplicates in the\r
-     resulting SYSTEM chain.  */\r
-  if (heads[SYSTEM])\r
-    tails[SYSTEM]->next = heads[AFTER];\r
-  else\r
-    heads[SYSTEM] = heads[AFTER];\r
-  heads[SYSTEM] = remove_duplicates (pfile, heads[SYSTEM], 0, 0, verbose);\r
-\r
-  /* Remove duplicates from BRACKET that are in itself or SYSTEM, and\r
-     join it to SYSTEM.  */\r
-  heads[BRACKET] = remove_duplicates (pfile, heads[BRACKET], heads[SYSTEM],\r
-                                     heads[SYSTEM], verbose);\r
-\r
-  /* Remove duplicates from QUOTE that are in itself or SYSTEM, and\r
-     join it to BRACKET.  */\r
-  heads[QUOTE] = remove_duplicates (pfile, heads[QUOTE], heads[SYSTEM],\r
-                                   heads[BRACKET], verbose);\r
-\r
-  /* If verbose, print the list of dirs to search.  */\r
-  if (verbose)\r
-    {\r
-      struct cpp_dir *p;\r
-\r
-      fprintf (stderr, _("#include \"...\" search starts here:\n"));\r
-      for (p = heads[QUOTE];; p = p->next)\r
-       {\r
-         if (p == heads[BRACKET])\r
-           fprintf (stderr, _("#include <...> search starts here:\n"));\r
-         if (!p)\r
-           break;\r
-         fprintf (stderr, " %s\n", p->name);\r
-       }\r
-      fprintf (stderr, _("End of search list.\n"));\r
-    }\r
-}\r
-\r
-/* Use given -I paths for #include "..." but not #include <...>, and\r
-   don't search the directory of the present file for #include "...".\r
-   (Note that -I. -I- is not the same as the default setup; -I. uses\r
-   the compiler's working dir.)  */\r
-void\r
-split_quote_chain (void)\r
-{\r
-  heads[QUOTE] = heads[BRACKET];\r
-  tails[QUOTE] = tails[BRACKET];\r
-  heads[BRACKET] = NULL;\r
-  tails[BRACKET] = NULL;\r
-  /* This is NOT redundant.  */\r
-  quote_ignores_source_dir = true;\r
-}\r
-\r
-/* Add P to the chain specified by CHAIN.  */\r
-\r
-void\r
-add_cpp_dir_path (cpp_dir *p, int chain)\r
-{\r
-  if (tails[chain])\r
-    tails[chain]->next = p;\r
-  else\r
-    heads[chain] = p;\r
-  tails[chain] = p;\r
-}\r
-\r
-/* Add PATH to the include chain CHAIN. PATH must be malloc-ed and\r
-   NUL-terminated.  */\r
-void\r
-add_path (char *path, int chain, int cxx_aware, bool user_supplied_p)\r
-{\r
-  cpp_dir *p;\r
-\r
-#if defined (HAVE_DOS_BASED_FILE_SYSTEM)\r
-  /* Convert all backslashes to slashes.  The native CRT stat()\r
-     function does not recognize a directory that ends in a backslash\r
-     (unless it is a drive root dir, such "c:\").  Forward slashes,\r
-     trailing or otherwise, cause no problems for stat().  */\r
-  char* c;\r
-  for (c = path; *c; c++)\r
-    if (*c == '\\') *c = '/';\r
-#endif\r
-\r
-  p = xmalloc (sizeof (cpp_dir));\r
-  p->next = NULL;\r
-  p->name = path;\r
-  if (chain == SYSTEM || chain == AFTER)\r
-    p->sysp = 1 + !cxx_aware;\r
-  else\r
-    p->sysp = 0;\r
-  p->construct = 0;\r
-  p->user_supplied_p = user_supplied_p;\r
-\r
-  add_cpp_dir_path (p, chain);\r
-}\r
-\r
-/* Exported function to handle include chain merging, duplicate\r
-   removal, and registration with cpplib.  */\r
-void\r
-register_include_chains (cpp_reader *pfile, const char *sysroot,\r
-                        const char *iprefix, int stdinc, int cxx_stdinc,\r
-                        int verbose)\r
-{\r
-  static const char *const lang_env_vars[] =\r
-    { "C_INCLUDE_PATH", "CPLUS_INCLUDE_PATH",\r
-      "OBJC_INCLUDE_PATH", "OBJCPLUS_INCLUDE_PATH" };\r
-  cpp_options *cpp_opts = cpp_get_options (pfile);\r
-  size_t idx = (cpp_opts->objc ? 2: 0);\r
-\r
-  if (cpp_opts->cplusplus)\r
-    idx++;\r
-  else\r
-    cxx_stdinc = false;\r
-\r
-  /* CPATH and language-dependent environment variables may add to the\r
-     include chain.  */\r
-  add_env_var_paths ("CPATH", BRACKET);\r
-  add_env_var_paths (lang_env_vars[idx], SYSTEM);\r
-\r
-  target_c_incpath.extra_pre_includes (sysroot, iprefix, stdinc);\r
-\r
-  /* Finally chain on the standard directories.  */\r
-  if (stdinc)\r
-    add_standard_paths (sysroot, iprefix, cxx_stdinc);\r
-\r
-  target_c_incpath.extra_includes (sysroot, iprefix, stdinc);\r
-\r
-  merge_include_chains (pfile, verbose);\r
-\r
-  cpp_set_include_chains (pfile, heads[QUOTE], heads[BRACKET],\r
-                         quote_ignores_source_dir);\r
-}\r
-#if !(defined TARGET_EXTRA_INCLUDES) || !(defined TARGET_EXTRA_PRE_INCLUDES)\r
-static void hook_void_charptr_charptr_int (const char *sysroot ATTRIBUTE_UNUSED,\r
-                                          const char *iprefix ATTRIBUTE_UNUSED,\r
-                                          int stdinc ATTRIBUTE_UNUSED)\r
-{\r
-}\r
-#endif\r
-\r
-#ifndef TARGET_EXTRA_INCLUDES\r
-#define TARGET_EXTRA_INCLUDES hook_void_charptr_charptr_int\r
-#endif\r
-#ifndef TARGET_EXTRA_PRE_INCLUDES\r
-#define TARGET_EXTRA_PRE_INCLUDES hook_void_charptr_charptr_int\r
-#endif\r
-\r
-struct target_c_incpath_s target_c_incpath = { TARGET_EXTRA_PRE_INCLUDES, TARGET_EXTRA_INCLUDES };\r
-\r
+/* Set up combined include path chain for the preprocessor.
+   Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+   1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+
+   Broken out of cppinit.c and cppfiles.c and rewritten Mar 2003.
+
+This program is free software; you can redistribute it and/or modify it
+under the terms of the GNU General Public License as published by the
+Free Software Foundation; either version 2, or (at your option) any
+later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+
+#include "config.h"
+#include "system.h"
+#include "cpplib.h"
+#include "prefix.h"
+#include "intl.h"
+#include "c-incpath.h"
+#include "cppdefault.h"
+
+/* Windows does not natively support inodes, and neither does MSDOS.
+   Cygwin's emulation can generate non-unique inodes, so don't use it.
+   VMS has non-numeric inodes.  */
+#ifdef VMS
+# define INO_T_EQ(A, B) (!memcmp (&(A), &(B), sizeof (A)))
+# define INO_T_COPY(DEST, SRC) memcpy(&(DEST), &(SRC), sizeof (SRC))
+#else
+# if (defined _WIN32 && !defined (_UWIN)) || defined __MSDOS__
+#  define INO_T_EQ(A, B) 0
+# else
+#  define INO_T_EQ(A, B) ((A) == (B))
+# endif
+# define INO_T_COPY(DEST, SRC) (DEST) = (SRC)
+#endif
+
+static void add_env_var_paths (const char *, int);
+static void add_standard_paths (const char *, const char *, int);
+static void free_path (struct cpp_dir *, int);
+static void merge_include_chains (cpp_reader *, int);
+static struct cpp_dir *remove_duplicates (cpp_reader *, struct cpp_dir *,
+                                          struct cpp_dir *,
+                                          struct cpp_dir *, int);
+
+/* Include chains heads and tails.  */
+static struct cpp_dir *heads[4];
+static struct cpp_dir *tails[4];
+static bool quote_ignores_source_dir;
+enum { REASON_QUIET = 0, REASON_NOENT, REASON_DUP, REASON_DUP_SYS };
+
+/* Free an element of the include chain, possibly giving a reason.  */
+static void
+free_path (struct cpp_dir *path, int reason)
+{
+  switch (reason)
+    {
+    case REASON_DUP:
+    case REASON_DUP_SYS:
+      fprintf (stderr, _("ignoring duplicate directory \"%s\"\n"), path->name);
+      if (reason == REASON_DUP_SYS)
+       fprintf (stderr,
+ _("  as it is a non-system directory that duplicates a system directory\n"));
+      break;
+
+    case REASON_NOENT:
+      fprintf (stderr, _("ignoring nonexistent directory \"%s\"\n"),
+              path->name);
+      break;
+
+    case REASON_QUIET:
+    default:
+      break;
+    }
+
+  free (path->name);
+  free (path);
+}
+
+/* Read ENV_VAR for a PATH_SEPARATOR-separated list of file names; and
+   append all the names to the search path CHAIN.  */
+static void
+add_env_var_paths (const char *env_var, int chain)
+{
+  char *p, *q, *path;
+
+  GET_ENVIRONMENT (q, env_var);
+
+  if (!q)
+    return;
+
+  for (p = q; *q; p = q + 1)
+    {
+      q = p;
+      while (*q != 0 && *q != PATH_SEPARATOR)
+       q++;
+
+      if (p == q)
+       path = xstrdup (".");
+      else
+       {
+         path = xmalloc (q - p + 1);
+         memcpy (path, p, q - p);
+         path[q - p] = '\0';
+       }
+
+      add_path (path, chain, chain == SYSTEM, false);
+    }
+}
+
+/* Append the standard include chain defined in cppdefault.c.  */
+static void
+add_standard_paths (const char *sysroot, const char *iprefix, int cxx_stdinc)
+{
+  const struct default_include *p;
+  size_t len;
+
+  if (iprefix && (len = cpp_GCC_INCLUDE_DIR_len) != 0)
+    {
+      /* Look for directories that start with the standard prefix.
+        "Translate" them, i.e. replace /usr/local/lib/gcc... with
+        IPREFIX and search them first.  */
+      for (p = cpp_include_defaults; p->fname; p++)
+       {
+         if (!p->cplusplus || cxx_stdinc)
+           {
+             /* Should we be translating sysrooted dirs too?  Assume
+                that iprefix and sysroot are mutually exclusive, for
+                now.  */
+             if (sysroot && p->add_sysroot)
+               continue;
+             if (!strncmp (p->fname, cpp_GCC_INCLUDE_DIR, len))
+               {
+                 char *str = concat (iprefix, p->fname + len, NULL);
+                 add_path (str, SYSTEM, p->cxx_aware, false);
+               }
+           }
+       }
+    }
+
+  for (p = cpp_include_defaults; p->fname; p++)
+    {
+      if (!p->cplusplus || cxx_stdinc)
+       {
+         char *str;
+
+         /* Should this directory start with the sysroot?  */
+         if (sysroot && p->add_sysroot)
+           str = concat (sysroot, p->fname, NULL);
+         else
+           str = update_path (p->fname, p->component);
+
+         add_path (str, SYSTEM, p->cxx_aware, false);
+       }
+    }
+}
+
+/* For each duplicate path in chain HEAD, keep just the first one.
+   Remove each path in chain HEAD that also exists in chain SYSTEM.
+   Set the NEXT pointer of the last path in the resulting chain to
+   JOIN, unless it duplicates JOIN in which case the last path is
+   removed.  Return the head of the resulting chain.  Any of HEAD,
+   JOIN and SYSTEM can be NULL.  */
+
+static struct cpp_dir *
+remove_duplicates (cpp_reader *pfile, struct cpp_dir *head,
+                  struct cpp_dir *system, struct cpp_dir *join,
+                  int verbose)
+{
+  struct cpp_dir **pcur, *tmp, *cur;
+  struct stat st;
+
+  for (pcur = &head; *pcur; )
+    {
+      int reason = REASON_QUIET;
+
+      cur = *pcur;
+
+      if (stat (cur->name, &st))
+       {
+         /* Dirs that don't exist are silently ignored, unless verbose.  */
+         if (errno != ENOENT)
+           cpp_errno (pfile, CPP_DL_ERROR, cur->name);
+         else
+           {
+             /* If -Wmissing-include-dirs is given, warn.  */
+             cpp_options *opts = cpp_get_options (pfile);
+             if (opts->warn_missing_include_dirs && cur->user_supplied_p)
+               cpp_errno (pfile, CPP_DL_WARNING, cur->name);
+             reason = REASON_NOENT;
+           }
+       }
+      else if (!S_ISDIR (st.st_mode))
+       cpp_error_with_line (pfile, CPP_DL_ERROR, 0, 0,
+                            "%s: not a directory", cur->name);
+      else
+       {
+         INO_T_COPY (cur->ino, st.st_ino);
+         cur->dev  = st.st_dev;
+
+         /* Remove this one if it is in the system chain.  */
+         reason = REASON_DUP_SYS;
+         for (tmp = system; tmp; tmp = tmp->next)
+           if (INO_T_EQ (tmp->ino, cur->ino) && tmp->dev == cur->dev
+               && cur->construct == tmp->construct)
+             break;
+
+         if (!tmp)
+           {
+             /* Duplicate of something earlier in the same chain?  */
+             reason = REASON_DUP;
+             for (tmp = head; tmp != cur; tmp = tmp->next)
+               if (INO_T_EQ (cur->ino, tmp->ino) && cur->dev == tmp->dev
+                   && cur->construct == tmp->construct)
+                 break;
+
+             if (tmp == cur
+                 /* Last in the chain and duplicate of JOIN?  */
+                 && !(cur->next == NULL && join
+                      && INO_T_EQ (cur->ino, join->ino)
+                      && cur->dev == join->dev
+                      && cur->construct == join->construct))
+               {
+                 /* Unique, so keep this directory.  */
+                 pcur = &cur->next;
+                 continue;
+               }
+           }
+       }
+
+      /* Remove this entry from the chain.  */
+      *pcur = cur->next;
+      free_path (cur, verbose ? reason: REASON_QUIET);
+    }
+
+  *pcur = join;
+  return head;
+}
+
+/* Merge the four include chains together in the order quote, bracket,
+   system, after.  Remove duplicate dirs (as determined by
+   INO_T_EQ()).
+
+   We can't just merge the lists and then uniquify them because then
+   we may lose directories from the <> search path that should be
+   there; consider -iquote foo -iquote bar -Ifoo -Iquux.  It is
+   however safe to treat -iquote bar -iquote foo -Ifoo -Iquux as if
+   written -iquote bar -Ifoo -Iquux.  */
+
+static void
+merge_include_chains (cpp_reader *pfile, int verbose)
+{
+  /* Join the SYSTEM and AFTER chains.  Remove duplicates in the
+     resulting SYSTEM chain.  */
+  if (heads[SYSTEM])
+    tails[SYSTEM]->next = heads[AFTER];
+  else
+    heads[SYSTEM] = heads[AFTER];
+  heads[SYSTEM] = remove_duplicates (pfile, heads[SYSTEM], 0, 0, verbose);
+
+  /* Remove duplicates from BRACKET that are in itself or SYSTEM, and
+     join it to SYSTEM.  */
+  heads[BRACKET] = remove_duplicates (pfile, heads[BRACKET], heads[SYSTEM],
+                                     heads[SYSTEM], verbose);
+
+  /* Remove duplicates from QUOTE that are in itself or SYSTEM, and
+     join it to BRACKET.  */
+  heads[QUOTE] = remove_duplicates (pfile, heads[QUOTE], heads[SYSTEM],
+                                   heads[BRACKET], verbose);
+
+  /* If verbose, print the list of dirs to search.  */
+  if (verbose)
+    {
+      struct cpp_dir *p;
+
+      fprintf (stderr, _("#include \"...\" search starts here:\n"));
+      for (p = heads[QUOTE];; p = p->next)
+       {
+         if (p == heads[BRACKET])
+           fprintf (stderr, _("#include <...> search starts here:\n"));
+         if (!p)
+           break;
+         fprintf (stderr, " %s\n", p->name);
+       }
+      fprintf (stderr, _("End of search list.\n"));
+    }
+}
+
+/* Use given -I paths for #include "..." but not #include <...>, and
+   don't search the directory of the present file for #include "...".
+   (Note that -I. -I- is not the same as the default setup; -I. uses
+   the compiler's working dir.)  */
+void
+split_quote_chain (void)
+{
+  heads[QUOTE] = heads[BRACKET];
+  tails[QUOTE] = tails[BRACKET];
+  heads[BRACKET] = NULL;
+  tails[BRACKET] = NULL;
+  /* This is NOT redundant.  */
+  quote_ignores_source_dir = true;
+}
+
+/* Add P to the chain specified by CHAIN.  */
+
+void
+add_cpp_dir_path (cpp_dir *p, int chain)
+{
+  if (tails[chain])
+    tails[chain]->next = p;
+  else
+    heads[chain] = p;
+  tails[chain] = p;
+}
+
+/* Add PATH to the include chain CHAIN. PATH must be malloc-ed and
+   NUL-terminated.  */
+void
+add_path (char *path, int chain, int cxx_aware, bool user_supplied_p)
+{
+  cpp_dir *p;
+
+#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
+  /* Convert all backslashes to slashes.  The native CRT stat()
+     function does not recognize a directory that ends in a backslash
+     (unless it is a drive root dir, such "c:\").  Forward slashes,
+     trailing or otherwise, cause no problems for stat().  */
+  char* c;
+  for (c = path; *c; c++)
+    if (*c == '\\') *c = '/';
+#endif
+
+  p = xmalloc (sizeof (cpp_dir));
+  p->next = NULL;
+  p->name = path;
+  if (chain == SYSTEM || chain == AFTER)
+    p->sysp = 1 + !cxx_aware;
+  else
+    p->sysp = 0;
+  p->construct = 0;
+  p->user_supplied_p = user_supplied_p;
+
+  add_cpp_dir_path (p, chain);
+}
+
+/* Exported function to handle include chain merging, duplicate
+   removal, and registration with cpplib.  */
+void
+register_include_chains (cpp_reader *pfile, const char *sysroot,
+                        const char *iprefix, int stdinc, int cxx_stdinc,
+                        int verbose)
+{
+  static const char *const lang_env_vars[] =
+    { "C_INCLUDE_PATH", "CPLUS_INCLUDE_PATH",
+      "OBJC_INCLUDE_PATH", "OBJCPLUS_INCLUDE_PATH" };
+  cpp_options *cpp_opts = cpp_get_options (pfile);
+  size_t idx = (cpp_opts->objc ? 2: 0);
+
+  if (cpp_opts->cplusplus)
+    idx++;
+  else
+    cxx_stdinc = false;
+
+  /* CPATH and language-dependent environment variables may add to the
+     include chain.  */
+  add_env_var_paths ("CPATH", BRACKET);
+  add_env_var_paths (lang_env_vars[idx], SYSTEM);
+
+  target_c_incpath.extra_pre_includes (sysroot, iprefix, stdinc);
+
+  /* Finally chain on the standard directories.  */
+  if (stdinc)
+    add_standard_paths (sysroot, iprefix, cxx_stdinc);
+
+  target_c_incpath.extra_includes (sysroot, iprefix, stdinc);
+
+  merge_include_chains (pfile, verbose);
+
+  cpp_set_include_chains (pfile, heads[QUOTE], heads[BRACKET],
+                         quote_ignores_source_dir);
+}
+#if !(defined TARGET_EXTRA_INCLUDES) || !(defined TARGET_EXTRA_PRE_INCLUDES)
+static void hook_void_charptr_charptr_int (const char *sysroot ATTRIBUTE_UNUSED,
+                                          const char *iprefix ATTRIBUTE_UNUSED,
+                                          int stdinc ATTRIBUTE_UNUSED)
+{
+}
+#endif
+
+#ifndef TARGET_EXTRA_INCLUDES
+#define TARGET_EXTRA_INCLUDES hook_void_charptr_charptr_int
+#endif
+#ifndef TARGET_EXTRA_PRE_INCLUDES
+#define TARGET_EXTRA_PRE_INCLUDES hook_void_charptr_charptr_int
+#endif
+
+struct target_c_incpath_s target_c_incpath = { TARGET_EXTRA_PRE_INCLUDES, TARGET_EXTRA_INCLUDES };
+
old mode 100755 (executable)
new mode 100644 (file)
index aba5246365ec789f478390175b6dd1597403922e..bc1bb09f93032a82ea72a62164419882021545b5 100644 (file)
@@ -1,26 +1,26 @@
-/*\r
-   bug-1654060.c\r
-\r
-   typedef within function causes syntax error\r
-*/\r
-\r
-#include <testfwk.h>\r
-typedef char mytype1;\r
-typedef int mytype2;\r
-\r
-mytype1 c1 = 'A';\r
-mytype2 i1 = 12345;\r
-\r
-void testTypedef(void)\r
-{\r
-  typedef int mytype1;\r
-  typedef char mytype2;\r
-\r
-  mytype1 i2 = 21435;\r
-  mytype2 c2 = 'B';\r
-\r
-  ASSERT(c1 == 'A');\r
-  ASSERT(i1 == 12345);\r
-  ASSERT(c1 == 'B');\r
-  ASSERT(i1 == 21435);\r
-}\r
+/*
+   bug-1654060.c
+
+   typedef within function causes syntax error
+*/
+
+#include <testfwk.h>
+typedef char mytype1;
+typedef int mytype2;
+
+mytype1 c1 = 'A';
+mytype2 i1 = 12345;
+
+void testTypedef(void)
+{
+  typedef int mytype1;
+  typedef char mytype2;
+
+  mytype1 i2 = 21435;
+  mytype2 c2 = 'B';
+
+  ASSERT(c1 == 'A');
+  ASSERT(i1 == 12345);
+  ASSERT(c1 == 'B');
+  ASSERT(i1 == 21435);
+}
index 1006a307802784a9bc4d08a06b0f1e3a790c66cb..d371d61351e724bdf6c783eaa8a5e38de82531fa 100644 (file)
@@ -1,43 +1,43 @@
-/*  An assignment inside a functioncall changed the type of the parameter.\r
-    See bug description 1273984 for details.\r
-\r
-    Bug detected and fixed by Guenther Jehle\r
-\r
-    sign: unsigned,\r
- */\r
-\r
-#include <testfwk.h>\r
-\r
-void foo({sign} int val) {\r
-  val; //make the compiler happy\r
-}\r
-\r
-void fooInt({sign} int val) {\r
-  ASSERT(val==3);\r
-}\r
-\r
-void fooChar({sign} char val) {\r
-  ASSERT(val==6);\r
-}\r
-\r
-void\r
-testAssignInFunctioncall(void)\r
-{\r
-  volatile {sign} char charVal=3;\r
-  volatile {sign} int intVal=0x4040;\r
-\r
-  fooInt(intVal=charVal); // should cast charVal to int for function call.\r
-                          // without patch #1645121, a char is put on the stack\r
-                          // (or hold in registers)\r
-  foo(0xAAAA);\r
-  fooInt(intVal=charVal);\r
-\r
-  intVal=6;\r
-\r
-  fooChar(charVal=intVal); // without patch, a int is put on the stack\r
-  foo(0xAAAA);\r
-  fooChar(charVal=intVal);\r
-\r
-}\r
-\r
-\r
+/*  An assignment inside a functioncall changed the type of the parameter.
+    See bug description 1273984 for details.
+
+    Bug detected and fixed by Guenther Jehle
+
+    sign: unsigned,
+ */
+
+#include <testfwk.h>
+
+void foo({sign} int val) {
+  val; //make the compiler happy
+}
+
+void fooInt({sign} int val) {
+  ASSERT(val==3);
+}
+
+void fooChar({sign} char val) {
+  ASSERT(val==6);
+}
+
+void
+testAssignInFunctioncall(void)
+{
+  volatile {sign} char charVal=3;
+  volatile {sign} int intVal=0x4040;
+
+  fooInt(intVal=charVal); // should cast charVal to int for function call.
+                          // without patch #1645121, a char is put on the stack
+                          // (or hold in registers)
+  foo(0xAAAA);
+  fooInt(intVal=charVal);
+
+  intVal=6;
+
+  fooChar(charVal=intVal); // without patch, a int is put on the stack
+  foo(0xAAAA);
+  fooChar(charVal=intVal);
+
+}
+
+
index 7024a271db822c53cb4b7ceda8a0c03ddc3e9237..d8847781e696618e6c2aeb10bac53417e9885fcd 100644 (file)
@@ -1,16 +1,16 @@
-/* bug1399290.c\r
- */\r
-#include <testfwk.h>\r
-\r
-unsigned long Left = 0x12345678;\r
-\r
-void\r
-testLongPlus(void)\r
-{\r
-       static unsigned long Result;\r
-       static unsigned long Rhs = 0x87654321;\r
-       static unsigned long *Lhs = &Left;\r
-\r
-       Result = *Lhs + Rhs;\r
-       ASSERT (Result == 0x99999999);\r
-}\r
+/* bug1399290.c
+ */
+#include <testfwk.h>
+
+unsigned long Left = 0x12345678;
+
+void
+testLongPlus(void)
+{
+       static unsigned long Result;
+       static unsigned long Rhs = 0x87654321;
+       static unsigned long *Lhs = &Left;
+
+       Result = *Lhs + Rhs;
+       ASSERT (Result == 0x99999999);
+}
index 192686065cc3c3034681468600bb4b306e055af4..39c738348ae3d2ef7e20ad7bc4cf07b856ab7a54 100644 (file)
@@ -1,21 +1,21 @@
-/*\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
+/*
+   bug1057979.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};
index fc9cb1d97b6c471029834a095c51016103eb0d4f..cf578437f7dc96db33a413ede8ff01fecca06c86 100644 (file)
@@ -1,6 +1,6 @@
-/* bug1503067.c\r
- */\r
-#include <testfwk.h>\r
-\r
-const int SPRITE = 0;\r
-int sprite = 1;\r
+/* bug1503067.c
+ */
+#include <testfwk.h>
+
+const int SPRITE = 0;
+int sprite = 1;
index ad125b9264aa3c76bbbdff9cdd3379ccedb1d3bd..0ccf322e8c5cd927c4c5387796b74391c2ec3d72 100644 (file)
@@ -1,23 +1,23 @@
-/* bug1520966 "Floating-point bug with small numbers"\r
- */\r
-\r
-#include <testfwk.h>\r
-#include <math.h>\r
-\r
-void\r
-testFloatOp(void)\r
-{\r
-    volatile float a,b;\r
-    float result;\r
-\r
-    a = 2.04e-38;\r
-    b = 0.01;\r
-    result = a * b;\r
-    ASSERT( result < a );\r
-    ASSERT( result >= 0.0 );\r
-\r
-    b = 100;\r
-    result = a / b;\r
-    ASSERT( result < a );\r
-    ASSERT( result >= 0.0 );\r
-}\r
+/* bug1520966 "Floating-point bug with small numbers"
+ */
+
+#include <testfwk.h>
+#include <math.h>
+
+void
+testFloatOp(void)
+{
+    volatile float a,b;
+    float result;
+
+    a = 2.04e-38;
+    b = 0.01;
+    result = a * b;
+    ASSERT( result < a );
+    ASSERT( result >= 0.0 );
+
+    b = 100;
+    result = a / b;
+    ASSERT( result < a );
+    ASSERT( result >= 0.0 );
+}
index dcd7a695ecfe4f1a608cfe08f075ead2bfdfbc87..b22b67f8fe93119a8274baead99309ef37fa57b1 100644 (file)
@@ -1,20 +1,20 @@
-/*\r
-   bug1546986.c\r
-*/\r
-\r
-#include <testfwk.h>\r
-#include <stdbool.h>\r
-\r
-static unsigned char pdata tst1 = 0x01;\r
-static unsigned char pdata tst2 = 0x00;\r
-\r
-static bool test;\r
-\r
-void\r
-testBug(void)\r
-{\r
-  test = (tst1 | tst2);\r
-  ASSERT( test );\r
-  test = (tst2 | tst1);\r
-  ASSERT( test );\r
-}\r
+/*
+   bug1546986.c
+*/
+
+#include <testfwk.h>
+#include <stdbool.h>
+
+static unsigned char pdata tst1 = 0x01;
+static unsigned char pdata tst2 = 0x00;
+
+static bool test;
+
+void
+testBug(void)
+{
+  test = (tst1 | tst2);
+  ASSERT( test );
+  test = (tst2 | tst1);
+  ASSERT( test );
+}
index f3980cd4e942d5c8cf1058c85ca9630ba8d70e40..9581062758b300e901eef419b14025acbb8266d1 100644 (file)
@@ -1,15 +1,15 @@
-/*\r
-   bug1551947.c\r
-*/\r
-\r
-#include <testfwk.h>\r
-\r
-xdata float z;\r
-xdata float x = 1.0;\r
-\r
-void\r
-testBug(void)\r
-{\r
-    z = x * x;\r
-    ASSERT( z == 1.0 );\r
-}\r
+/*
+   bug1551947.c
+*/
+
+#include <testfwk.h>
+
+xdata float z;
+xdata float x = 1.0;
+
+void
+testBug(void)
+{
+    z = x * x;
+    ASSERT( z == 1.0 );
+}
index c3c541d5c6a10b46baaf7809989443b72ced5fc3..820670a8b029c219b97808a6dd1276d238fc9fd4 100644 (file)
@@ -1,45 +1,45 @@
-/* OpAssign tests\r
- */\r
-#include <testfwk.h>\r
-\r
-#ifdef SDCC\r
-#include <sdcc-lib.h>\r
-#else\r
-#define _STATMEM\r
-#endif\r
-\r
-typedef struct\r
-{\r
-  char a;\r
-  char n;\r
-} item_type;\r
-\r
-item_type t;\r
-\r
-\r
-_STATMEM item_type* get_next_item(void)\r
-{\r
-  /* have a side effect */\r
-  t.n++;\r
-\r
-  /* keep things easy, not implementing a list.\r
-     Using a true list would break things\r
-     even more pointedly:\r
-     a) reading beyond end of the list and\r
-     b) intermixing list members */\r
-  return &t;\r
-}\r
-\r
-\r
-void\r
-testOpAssign(void)\r
-{\r
-  t.a = 0;\r
-  t.n = 0;\r
-\r
-  /* get_next_item() should be called only once */\r
-  get_next_item()->a |= 42;\r
-\r
-  ASSERT (t.a == 42);\r
-  ASSERT (t.n == 1);\r
-}\r
+/* OpAssign tests
+ */
+#include <testfwk.h>
+
+#ifdef SDCC
+#include <sdcc-lib.h>
+#else
+#define _STATMEM
+#endif
+
+typedef struct
+{
+  char a;
+  char n;
+} item_type;
+
+item_type t;
+
+
+_STATMEM item_type* get_next_item(void)
+{
+  /* have a side effect */
+  t.n++;
+
+  /* keep things easy, not implementing a list.
+     Using a true list would break things
+     even more pointedly:
+     a) reading beyond end of the list and
+     b) intermixing list members */
+  return &t;
+}
+
+
+void
+testOpAssign(void)
+{
+  t.a = 0;
+  t.n = 0;
+
+  /* get_next_item() should be called only once */
+  get_next_item()->a |= 42;
+
+  ASSERT (t.a == 42);
+  ASSERT (t.n == 1);
+}
index 3708e57535af4a9f5e4ff014493fba00b450709f..8213de266716667e56240f8afa6faa9d2db2d48d 100644 (file)
@@ -1,92 +1,92 @@
-/** extended tests for shift operations, added by\r
-    Frieder Ferlemann to check for bugs related to bug 1533966\r
-\r
-    size: 8,16,32\r
-    right: 0,1\r
-    vol: 0,1\r
-    sign: u,\r
-*/\r
-#include <testfwk.h>\r
-#ifdef __sun__\r
-#  include <inttypes.h>\r
-#else\r
-#  include <stdint.h>\r
-#endif\r
-\r
-#define SIZE    ({size})\r
-#define RIGHT   ({right})\r
-#define VOL     ({vol})\r
-\r
-#if SIZE == 8\r
-#  define TYPE {sign}int8_t\r
-#  define TEST_VECT 0xa4\r
-#endif\r
-\r
-#if SIZE == 16\r
-#  define TYPE {sign}int16_t\r
-#  define TEST_VECT 0xa8ce\r
-#endif\r
-\r
-#if SIZE == 32\r
-#  define TYPE {sign}int32_t\r
-#  define TEST_VECT 0xa8b5c4d6\r
-#endif\r
-\r
-#if RIGHT == 0\r
-#  define SHIFT(x,y) (TYPE)((TYPE)(x)<<(y))\r
-#else\r
-#  define SHIFT(x,y) (TYPE)((TYPE)(x)>>(y))\r
-#endif\r
-\r
-#if VOL == 0\r
-  volatile TYPE s = TEST_VECT;\r
-           TYPE t;\r
-  #define TESTSHIFT(x) t=s; t = SHIFT (t,(x)); ASSERT( t == SHIFT (TEST_VECT, (x)));\r
-#else\r
-  volatile TYPE t = TEST_VECT;\r
-  #define TESTSHIFT(x) t=TEST_VECT; t = SHIFT (t,(x)); ASSERT( t == SHIFT (TEST_VECT, (x)));\r
-#endif\r
-\r
-static void\r
-testShift(void)\r
-{\r
-    TESTSHIFT(0);\r
-    TESTSHIFT(1);\r
-    TESTSHIFT(2);\r
-    TESTSHIFT(3);\r
-    TESTSHIFT(4);\r
-    TESTSHIFT(5);\r
-    TESTSHIFT(6);\r
-    TESTSHIFT(7);\r
-\r
-#if SIZE >= 16\r
-    TESTSHIFT(8);\r
-    TESTSHIFT(9);\r
-    TESTSHIFT(10);\r
-    TESTSHIFT(11);\r
-    TESTSHIFT(12);\r
-    TESTSHIFT(13);\r
-    TESTSHIFT(14);\r
-    TESTSHIFT(15);\r
-#endif\r
-\r
-#if SIZE >= 32\r
-    TESTSHIFT(16);\r
-    TESTSHIFT(17);\r
-    TESTSHIFT(18);\r
-    TESTSHIFT(19);\r
-    TESTSHIFT(20);\r
-    TESTSHIFT(21);\r
-    TESTSHIFT(22);\r
-    TESTSHIFT(23);\r
-\r
-    TESTSHIFT(24);\r
-    TESTSHIFT(25);\r
-    TESTSHIFT(26);\r
-    TESTSHIFT(27);\r
-    TESTSHIFT(28);\r
-    TESTSHIFT(29);\r
-    TESTSHIFT(30);\r
-    TESTSHIFT(31);\r
-#endif\r
-}\r
+/** extended tests for shift operations, added by
+    Frieder Ferlemann to check for bugs related to bug 1533966
+
+    size: 8,16,32
+    right: 0,1
+    vol: 0,1
+    sign: u,
+*/
+#include <testfwk.h>
+#ifdef __sun__
+#  include <inttypes.h>
+#else
+#  include <stdint.h>
+#endif
+
+#define SIZE    ({size})
+#define RIGHT   ({right})
+#define VOL     ({vol})
+
+#if SIZE == 8
+#  define TYPE {sign}int8_t
+#  define TEST_VECT 0xa4
+#endif
+
+#if SIZE == 16
+#  define TYPE {sign}int16_t
+#  define TEST_VECT 0xa8ce
+#endif
+
+#if SIZE == 32
+#  define TYPE {sign}int32_t
+#  define TEST_VECT 0xa8b5c4d6
+#endif
+
+#if RIGHT == 0
+#  define SHIFT(x,y) (TYPE)((TYPE)(x)<<(y))
+#else
+#  define SHIFT(x,y) (TYPE)((TYPE)(x)>>(y))
+#endif
+
+#if VOL == 0
+  volatile TYPE s = TEST_VECT;
+           TYPE t;
+  #define TESTSHIFT(x) t=s; t = SHIFT (t,(x)); ASSERT( t == SHIFT (TEST_VECT, (x)));
+#else
+  volatile TYPE t = TEST_VECT;
+  #define TESTSHIFT(x) t=TEST_VECT; t = SHIFT (t,(x)); ASSERT( t == SHIFT (TEST_VECT, (x)));
+#endif
+
+static void
+testShift(void)
+{
+    TESTSHIFT(0);
+    TESTSHIFT(1);
+    TESTSHIFT(2);
+    TESTSHIFT(3);
+    TESTSHIFT(4);
+    TESTSHIFT(5);
+    TESTSHIFT(6);
+    TESTSHIFT(7);
+
+#if SIZE >= 16
+    TESTSHIFT(8);
+    TESTSHIFT(9);
+    TESTSHIFT(10);
+    TESTSHIFT(11);
+    TESTSHIFT(12);
+    TESTSHIFT(13);
+    TESTSHIFT(14);
+    TESTSHIFT(15);
+#endif
+
+#if SIZE >= 32
+    TESTSHIFT(16);
+    TESTSHIFT(17);
+    TESTSHIFT(18);
+    TESTSHIFT(19);
+    TESTSHIFT(20);
+    TESTSHIFT(21);
+    TESTSHIFT(22);
+    TESTSHIFT(23);
+
+    TESTSHIFT(24);
+    TESTSHIFT(25);
+    TESTSHIFT(26);
+    TESTSHIFT(27);
+    TESTSHIFT(28);
+    TESTSHIFT(29);
+    TESTSHIFT(30);
+    TESTSHIFT(31);
+#endif
+}
index f38ae9bf87d09a0681cf0d769cff8523ab9f0572..217ea367f00594d037d9114a4348b910c44e8374 100644 (file)
@@ -1,30 +1,30 @@
-/*\r
-   while.c\r
-*/\r
-\r
-#include <testfwk.h>\r
-\r
-char c1 = 0, c2 = 1;\r
-\r
-void\r
-testEmptyWhile(void)\r
-{\r
-  /* loops forever if bug ist present */\r
-  do {} while (c1 && c2);\r
-\r
-  /* other cases: */\r
-  do {} while ( c1 &&  c1);\r
-  do {} while ( c1 && !c2);\r
-  do {} while (!c1 && !c2);\r
-  do {} while ( c2 &&  c1);\r
-  do {} while (!c2 &&  c1);\r
-  do {} while (!c2 && !c1);\r
-  do {} while (!c2 && !c2);\r
-\r
-  do {} while ( c1 ||  c1);\r
-  do {} while ( c1 || !c2);\r
-  do {} while (!c2 ||  c1);\r
-  do {} while (!c2 || !c2);\r
-\r
-  ASSERT(1);\r
-}\r
+/*
+   while.c
+*/
+
+#include <testfwk.h>
+
+char c1 = 0, c2 = 1;
+
+void
+testEmptyWhile(void)
+{
+  /* loops forever if bug ist present */
+  do {} while (c1 && c2);
+
+  /* other cases: */
+  do {} while ( c1 &&  c1);
+  do {} while ( c1 && !c2);
+  do {} while (!c1 && !c2);
+  do {} while ( c2 &&  c1);
+  do {} while (!c2 &&  c1);
+  do {} while (!c2 && !c1);
+  do {} while (!c2 && !c2);
+
+  do {} while ( c1 ||  c1);
+  do {} while ( c1 || !c2);
+  do {} while (!c2 ||  c1);
+  do {} while (!c2 || !c2);
+
+  ASSERT(1);
+}