diff options
| author | m.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-03 02:19:42 +0000 |
|---|---|---|
| committer | m.hayes <m.hayes@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-03 02:19:42 +0000 |
| commit | 5997270dc9de08fc18465e9625df803a52c81841 (patch) | |
| tree | cc48f0939a2b06f7136508da51a96442ba61b5a1 | |
| parent | 3cffa4645a032b6ac033f2f35ef9dabb461b9ccf (diff) | |
| download | ppe42-gcc-5997270dc9de08fc18465e9625df803a52c81841.tar.gz ppe42-gcc-5997270dc9de08fc18465e9625df803a52c81841.zip | |
* c4x.h (HARD_REGNO_CALL_PART_CLOBBERED): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39423 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/c4x/c4x.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 70d67de7a2b..1e3dbcaf330 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-02-03 Michael Hayes <m.hayes@elec.canterbury.ac.nz) + + * c4x.h (HARD_REGNO_CALL_PART_CLOBBERED): Fix typo. + 2001-02-02 lars brinkhoff <lars@nocrew.org> * md.texi (Standard Names): remove reference to spur.md. diff --git a/gcc/config/c4x/c4x.h b/gcc/config/c4x/c4x.h index e5cba8f0d2f..72ffb37c0ae 100644 --- a/gcc/config/c4x/c4x.h +++ b/gcc/config/c4x/c4x.h @@ -643,7 +643,7 @@ extern const char *c4x_rpts_cycles_string, *c4x_cpu_version_string; #define HARD_REGNO_CALL_PART_CLOBBERED(REGNO, MODE) \ ((IS_FLOAT_CALL_SAVED_REGNO (REGNO) && ! ((MODE) == QFmode)) \ - || (IS_INT_CALL_SAVED_REGNO (REGNO)) \ + || (IS_INT_CALL_SAVED_REGNO (REGNO) \ && ! ((MODE) == QImode || (MODE) == HImode || (MODE) == Pmode))) /* Specify the modes required to caller save a given hard regno. */ |

