diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config.gcc | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 890b4a8..6ec9883 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-12-09 Svein E. Seldal <Svein.Seldal@solidas.com> + + * config.gcc: Added tic4x-* target as an alias to c4x-* + Sun Dec 8 14:57:39 CET 2002 Jan Hubicka <jh@suse.cz> * i386.c (ix86_expand_int_movcc): Use force_operand instead of constructing diff --git a/gcc/config.gcc b/gcc/config.gcc index f2a6b16..3e889ae 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -283,6 +283,9 @@ sparc*-*-*) sh[123456789l]*-*-*) cpu_type=sh ;; +tic4x-*-*) + cpu_type=c4x + ;; esac tm_file=${cpu_type}/${cpu_type}.h @@ -685,7 +688,7 @@ arm-*-pe*) ;; avr-*-*) ;; -c4x-*-rtems*) +c4x-*-rtems* | tic4x-*-rtems*) xm_defines=POSIX tmake_file="c4x/t-c4x t-rtems" tm_file="c4x/c4x.h c4x/rtems.h rtems.h" @@ -695,7 +698,7 @@ c4x-*-rtems*) c_target_objs="c4x-c.o" cxx_target_objs="c4x-c.o" ;; -c4x-*) +c4x-* | tic4x-*) tmake_file=c4x/t-c4x c_target_objs="c4x-c.o" cxx_target_objs="c4x-c.o" |