diff options
author | Jim Wilson <jimw@sifive.com> | 2018-09-26 18:42:19 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2018-09-26 11:42:19 -0700 |
commit | 1fb157ccb58a56edae02542d2bb3f1f30e5f63d1 (patch) | |
tree | 078735e9649d1c9e8aee015020e7d9759f96a2ea /gcc | |
parent | 0974b794c104f403c335a7e6b2376b487ab17659 (diff) | |
download | gcc-1fb157ccb58a56edae02542d2bb3f1f30e5f63d1.zip gcc-1fb157ccb58a56edae02542d2bb3f1f30e5f63d1.tar.gz gcc-1fb157ccb58a56edae02542d2bb3f1f30e5f63d1.tar.bz2 |
RISC-V: Delete obsolete MIPS comment.
gcc/
* config/riscv/riscv.h (FUNCTION_ARG_REGNO_P): Fix comment.
From-SVN: r264652
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/riscv/riscv.h | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e134f91..49ff24c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2018-09-26 Jim Wilson <jimw@sifive.com> + + * config/riscv/riscv.h (FUNCTION_ARG_REGNO_P): Fix comment. + 2018-09-26 Jakub Jelinek <jakub@redhat.com> PR target/87414 diff --git a/gcc/config/riscv/riscv.h b/gcc/config/riscv/riscv.h index 4bbb491..3c9f96d 100644 --- a/gcc/config/riscv/riscv.h +++ b/gcc/config/riscv/riscv.h @@ -516,8 +516,7 @@ enum reg_class #define FUNCTION_VALUE_REGNO_P(N) ((N) == GP_RETURN || (N) == FP_RETURN) /* 1 if N is a possible register number for function argument passing. - We have no FP argument registers when soft-float. When FP registers - are 32 bits, we can't directly reference the odd numbered ones. */ + We have no FP argument registers when soft-float. */ /* Accept arguments in a0-a7, and in fa0-fa7 if permitted by the ABI. */ #define FUNCTION_ARG_REGNO_P(N) \ |