diff options
author | Michael Hayes <m.hayes@elec.canterbury.ac.nz> | 1999-03-20 14:01:57 +0000 |
---|---|---|
committer | Michael Hayes <m.hayes@gcc.gnu.org> | 1999-03-20 14:01:57 +0000 |
commit | 4bca1429ec897ce86993c9c24fda4ef53449e496 (patch) | |
tree | 7571f574b6b012221eae77510faca91a758cfbb6 | |
parent | b50cb11f46c51d2d211e735941555f8c00adf231 (diff) | |
download | gcc-4bca1429ec897ce86993c9c24fda4ef53449e496.zip gcc-4bca1429ec897ce86993c9c24fda4ef53449e496.tar.gz gcc-4bca1429ec897ce86993c9c24fda4ef53449e496.tar.bz2 |
c4x.h (TARGET_SWITCHES): Add null description to default case.
* config/c4x/c4x.h (TARGET_SWITCHES): Add null description to
default case.
From-SVN: r25869
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/c4x/c4x.h | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b35cc32..3dc8910 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Sun Mar 21 09:59:54 1999 Michael Hayes <m.hayes@elec.canterbury.ac.nz> + + * config/c4x/c4x.h (TARGET_SWITCHES): Add null description to + default case. + Sat Mar 20 23:33:54 1999 Michael Hayes <m.hayes@elec.canterbury.ac.nz> * loop.c (check_dbra_loop): Fix debug message. diff --git a/gcc/config/c4x/c4x.h b/gcc/config/c4x/c4x.h index 0ac9d02..a72d6db 100644 --- a/gcc/config/c4x/c4x.h +++ b/gcc/config/c4x/c4x.h @@ -156,8 +156,8 @@ /* Run-time compilation parameters selecting different hardware subsets. Macro to define tables used to set the flags. - This is a list in braces of pairs in braces, - each pair being { "NAME", VALUE } + This is a list in braces of triplets in braces, + each pair being { "NAME", VALUE, "DESCRIPTION" } where VALUE is the bits to set or minus the bits to clear. An empty string NAME is used to identify the default VALUE. */ @@ -252,7 +252,7 @@ "Assume that pointers may be aliased" }, \ { "no-aliases", -ALIASES_FLAG, \ "Assume that pointers not aliased" }, \ - { "", TARGET_DEFAULT} } + { "", TARGET_DEFAULT, ""} } /* Default target switches */ |