diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-09-18 11:43:45 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-09-18 11:43:45 +0000 |
commit | 5e7a8ee032347a12cfc8bcac117b028f4359ae0c (patch) | |
tree | dbbc439fc42504750f53ed2a6d46af05dd6eee4d /gcc/config/vax | |
parent | a2f2457fa482356b5996a084d037d79fdc1a556f (diff) | |
download | gcc-5e7a8ee032347a12cfc8bcac117b028f4359ae0c.tar.gz |
s390.c: Follow spelling convention.
* config/s390/s390.c: Follow spelling convention.
* config/sh/lib1funcs.asm: Likewise.
* config/sh/sh.c: Likewise.
* config/sh/sh.h: Likewise.
* config/sparc/sparc.c: Likewise.
* config/sparc/sparc.h: Likewise.
* config/sparc/sparc.md: Likewise.
* config/stormy16/stormy16.c: Likewise.
* config/stormy16/stormy16.h: Likewise.
* config/v850/v850.c: Likewise.
* config/v850/v850.h: Likewise.
* config/vax/vax.c: Likewise.
* config/vax/vax.h: Likewise.
From-SVN: r57276
Diffstat (limited to 'gcc/config/vax')
-rw-r--r-- | gcc/config/vax/vax.c | 2 | ||||
-rw-r--r-- | gcc/config/vax/vax.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/vax/vax.c b/gcc/config/vax/vax.c index 705818fde0f..c00189f3a7e 100644 --- a/gcc/config/vax/vax.c +++ b/gcc/config/vax/vax.c @@ -318,7 +318,7 @@ print_operand_address (file, addr) else abort (); - /* If REG1 is non-zero, figure out if it is a base or index register. */ + /* If REG1 is nonzero, figure out if it is a base or index register. */ if (reg1) { if (breg != 0 || (offset && GET_CODE (offset) == MEM)) diff --git a/gcc/config/vax/vax.h b/gcc/config/vax/vax.h index fed8ac4fa12..e51f064c2b2 100644 --- a/gcc/config/vax/vax.h +++ b/gcc/config/vax/vax.h @@ -630,7 +630,7 @@ enum reg_class { NO_REGS, ALL_REGS, LIM_REG_CLASSES }; || GET_CODE (X) == CONST_INT) -/* Non-zero if X is an address which can be indirected. External symbols +/* Nonzero if X is an address which can be indirected. External symbols could be in a sharable image library, so we disallow those. */ #define INDIRECTABLE_ADDRESS_P(X) \ @@ -645,7 +645,7 @@ enum reg_class { NO_REGS, ALL_REGS, LIM_REG_CLASSES }; #define INDIRECTABLE_CONSTANT_ADDRESS_P(X) CONSTANT_ADDRESS_P(X) -/* Non-zero if X is an address which can be indirected. */ +/* Nonzero if X is an address which can be indirected. */ #define INDIRECTABLE_ADDRESS_P(X) \ (CONSTANT_ADDRESS_P (X) \ || (GET_CODE (X) == REG && REG_OK_FOR_BASE_P (X)) \ |