]> Git Repo - binutils.git/commitdiff
Initial ARC support.
authorDavid Edelsohn <[email protected]>
Wed, 30 Nov 1994 02:16:54 +0000 (02:16 +0000)
committerDavid Edelsohn <[email protected]>
Wed, 30 Nov 1994 02:16:54 +0000 (02:16 +0000)
gas/.Sanitize
gas/ChangeLog

index 3926f41ddbf64a559a4ac8bd8bf40f7e859dfd8d..c4bf4c6ef987e998d684fcc14019ef125a4dd19e 100644 (file)
@@ -154,6 +154,34 @@ else
        done
 fi
 
+arc_files="ChangeLog configure.in configure"
+if ( echo $* | grep keep\-arc > /dev/null ) ; then
+       for i in $arc_files ; do
+               if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Keeping arc stuff in $i
+                       fi
+               fi
+       done
+else
+       for i in $arc_files ; do
+               if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Removing traces of \"arc\" from $i...
+                       fi
+                       cp $i new
+                       sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
+                       if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+                               if [ -n "${verbose}" ] ; then
+                                       echo Caching $i in .Recover...
+                               fi
+                               mv $i .Recover
+                       fi
+                       mv new $i
+               fi
+       done
+fi
+
 for i in * ; do
        if test ! -d $i && (grep sanitize $i > /dev/null) ; then
                echo '***' Some mentions of Sanitize are still left in $i! 1>&2
index 8e5356dc5ee0c5a9cd0da34f8d62d89796b71924..69411c6b8084c4410737ae04e1592a7b102c4518 100644 (file)
@@ -1,3 +1,11 @@
+start-sanitize-arc
+Tue Nov 29 18:12:22 1994  Doug Evans  <[email protected]>
+
+       * configure.in (arc-*-elf*): Recognize.
+       * configure: "regenerated".
+       * config/tc-arc.c, config/tc-arc.h: New files.
+end-sanitize-arc
+
 Tue Nov 29 13:58:10 1994  Ken Raeburn  <[email protected]>
 
        Use libiberty version of xmalloc:
This page took 0.049852 seconds and 4 git commands to generate.