diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1994-11-30 02:48:31 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1994-11-30 02:48:31 +0000 |
commit | bc70eba5c89d0402b0fbba91eb085a8f56be254b (patch) | |
tree | a9c21e593e17c7f548a49e54672158d4ab903b5f | |
parent | 6ea93cc98c7ecb4182c7ec5d9b7a98eff70a0621 (diff) | |
download | gdb-bc70eba5c89d0402b0fbba91eb085a8f56be254b.zip gdb-bc70eba5c89d0402b0fbba91eb085a8f56be254b.tar.gz gdb-bc70eba5c89d0402b0fbba91eb085a8f56be254b.tar.bz2 |
Initial ARC support.
-rw-r--r-- | gas/config/.Sanitize | 8 | ||||
-rw-r--r-- | gas/config/arc.mt | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gas/config/.Sanitize b/gas/config/.Sanitize index b4934b3..2536b9f 100644 --- a/gas/config/.Sanitize +++ b/gas/config/.Sanitize @@ -23,6 +23,14 @@ else lose_these_too="${rce_files} ${lose_these_too}" fi +arc_files="tc-arc.c tc-arc.h arc.mt" + +if ( echo $* | grep keep\-arc > /dev/null ) ; then + keep_these_too="${arc_files} ${keep_these_too}" +else + lose_these_too="${arc_files} ${lose_these_too}" +fi + # All files listed between the "Things-to-keep:" line and the # "Files-to-sed:" line will be kept. All other files will be removed. # Directories listed in this section will have their own Sanitize diff --git a/gas/config/arc.mt b/gas/config/arc.mt new file mode 100644 index 0000000..a3b853f --- /dev/null +++ b/gas/config/arc.mt @@ -0,0 +1 @@ +TARG_CPU_DEPENDENTS=$(srcdir)/../include/opcode/arc.h |