diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-04 04:33:45 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-04 04:33:45 +0000 |
commit | d15353b6e396794a42301a349cbab8a109c52778 (patch) | |
tree | c3660bb16c6705028a0d5caecf1b8ea108bd85f8 /gcc/config/v850/v850.c | |
parent | a17c2a3a9f10b5c7bd3cffc816fac55020e3faff (diff) | |
download | gcc-d15353b6e396794a42301a349cbab8a109c52778.tar.gz |
* config/v850/v850.c, config/v850/v850.h, config/v850/v850.md:
Follow spelling conventions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121567 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/v850/v850.c')
-rw-r--r-- | gcc/config/v850/v850.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/v850/v850.c b/gcc/config/v850/v850.c index 22bb1512562..e741c730b92 100644 --- a/gcc/config/v850/v850.c +++ b/gcc/config/v850/v850.c @@ -854,10 +854,10 @@ output_move_single (rtx * operands) { HOST_WIDE_INT value = INTVAL (src); - if (CONST_OK_FOR_J (value)) /* Signed 5 bit immediate. */ + if (CONST_OK_FOR_J (value)) /* Signed 5-bit immediate. */ return "mov %1,%0"; - else if (CONST_OK_FOR_K (value)) /* Signed 16 bit immediate. */ + else if (CONST_OK_FOR_K (value)) /* Signed 16-bit immediate. */ return "movea lo(%1),%.,%0"; else if (CONST_OK_FOR_L (value)) /* Upper 16 bits were set. */ @@ -876,10 +876,10 @@ output_move_single (rtx * operands) const_double_split (src, &high, &low); - if (CONST_OK_FOR_J (high)) /* Signed 5 bit immediate. */ + if (CONST_OK_FOR_J (high)) /* Signed 5-bit immediate. */ return "mov %F1,%0"; - else if (CONST_OK_FOR_K (high)) /* Signed 16 bit immediate. */ + else if (CONST_OK_FOR_K (high)) /* Signed 16-bit immediate. */ return "movea lo(%F1),%.,%0"; else if (CONST_OK_FOR_L (high)) /* Upper 16 bits were set. */ @@ -1921,7 +1921,7 @@ Saved %d bytes via epilogue function (%d vs. %d) in function %s\n", } } - /* If no epilog save function is available, restore the registers the + /* If no epilogue save function is available, restore the registers the old fashioned way (one by one). */ if (!restore_all) { |