diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-08-17 21:23:12 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-08-17 21:23:12 +0000 |
commit | 2d76cb1aba961fe2dc84fd3b1dad04181affd103 (patch) | |
tree | d04df8e015f11f7c3f1a689524aaa53d9d41c76a /gcc/stor-layout.c | |
parent | 171262081c9cd444023acbd55ef265e9cffcd47b (diff) | |
download | gcc-2d76cb1aba961fe2dc84fd3b1dad04181affd103.zip gcc-2d76cb1aba961fe2dc84fd3b1dad04181affd103.tar.gz gcc-2d76cb1aba961fe2dc84fd3b1dad04181affd103.tar.bz2 |
sbitmap.c: Fix comment formatting.
* sbitmap.c: Fix comment formatting.
* sched-deps.c: Likewise.
* sibcall.c: Likewise.
* simplify-rtx.c: Likewise.
* ssa.c: Likewise.
* ssa-ccp.c: Likewise.
* stor-layout.c: Likewise.
* timevar.c: Likewise.
* toplev.c: Likewise.
* unwind-dw2.c: Likewise.
* unwind-dw2-fde.c: Likewise.
* varasm.c: Likewise.
From-SVN: r44983
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r-- | gcc/stor-layout.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 5431c26..39c30c5 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -274,7 +274,7 @@ int_mode_for_mode (mode) if (mode == BLKmode) break; - /* ... fall through ... */ + /* ... fall through ... */ case MODE_CC: default: @@ -1303,11 +1303,11 @@ layout_type (type) of the language-specific code. */ abort (); - case BOOLEAN_TYPE: /* Used for Java, Pascal, and Chill. */ + case BOOLEAN_TYPE: /* Used for Java, Pascal, and Chill. */ if (TYPE_PRECISION (type) == 0) - TYPE_PRECISION (type) = 1; /* default to one byte/boolean. */ + TYPE_PRECISION (type) = 1; /* default to one byte/boolean. */ - /* ... fall through ... */ + /* ... fall through ... */ case INTEGER_TYPE: case ENUMERAL_TYPE: @@ -1525,7 +1525,7 @@ layout_type (type) } break; - case SET_TYPE: /* Used by Chill and Pascal. */ + case SET_TYPE: /* Used by Chill and Pascal. */ if (TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) != INTEGER_CST || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (type))) != INTEGER_CST) abort(); |