aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2005-01-27 13:41:40 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2005-01-27 13:41:40 +0100
commit9d72d99675ced5b9f02313c05f01de2a8d03b8d8 (patch)
treebfe176bfc63b09c8186796d81d7480702cca718d /gcc
parentd8dd2f3a64a689127b43a7b4ca3260d93b977cc5 (diff)
downloadgcc-9d72d99675ced5b9f02313c05f01de2a8d03b8d8.zip
gcc-9d72d99675ced5b9f02313c05f01de2a8d03b8d8.tar.gz
gcc-9d72d99675ced5b9f02313c05f01de2a8d03b8d8.tar.bz2
* config/i386/i386.h (CALL_USED_REGISTERS): Fix comment pastos.
From-SVN: r94321
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/config/i386/i386.h10
2 files changed, 7 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 51b5a55..47c64d8 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,7 @@
2005-01-27 Jakub Jelinek <jakub@redhat.com>
+ * config/i386/i386.h (CALL_USED_REGISTERS): Fix comment pastos.
+
PR c/18946
* c-decl.c (warn_if_shadowing): Handle old_decl error_mark_node.
(pushdecl): Only use DECL_FILE_SCOPE_P if DECL_P.
diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h
index 5168da8..e155a4f 100644
--- a/gcc/config/i386/i386.h
+++ b/gcc/config/i386/i386.h
@@ -967,10 +967,10 @@ extern int x86_prefetch_sse;
and the register where structure-value addresses are passed.
Aside from that, you can include as many other registers as you like.
- The value is zero if the register is not fixed on either 32 or
- 64 bit targets, one if the register if fixed on both 32 and 64
- bit targets, two if it is only fixed on 32bit targets and three
- if its only fixed on 64bit targets.
+ The value is zero if the register is not call used on either 32 or
+ 64 bit targets, one if the register if call used on both 32 and 64
+ bit targets, two if it is only call used on 32bit targets and three
+ if its only call used on 64bit targets.
Proper values are computed in the CONDITIONAL_REGISTER_USAGE.
*/
#define CALL_USED_REGISTERS \
@@ -1735,7 +1735,7 @@ typedef struct ix86_args {
int words; /* # words passed so far */
int nregs; /* # registers available for passing */
int regno; /* next available register number */
- int fastcall; /* fastcall calling convention is used */
+ int fastcall; /* fastcall calling convention is used */
int sse_words; /* # sse words passed so far */
int sse_nregs; /* # sse registers available for passing */
int warn_sse; /* True when we want to warn about SSE ABI. */