diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-08-12 23:40:53 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-08-12 23:40:53 +0000 |
commit | dc297297ea56b13efad4bcddab5359fae7d819c1 (patch) | |
tree | f8425171fd5a2b92510be46813648f3e6a1d9f61 /gcc/gccspec.c | |
parent | f0d1c3bd39e6379bf2c1b53071c62baeabeb2174 (diff) | |
download | gcc-dc297297ea56b13efad4bcddab5359fae7d819c1.zip gcc-dc297297ea56b13efad4bcddab5359fae7d819c1.tar.gz gcc-dc297297ea56b13efad4bcddab5359fae7d819c1.tar.bz2 |
gcc.c: Fix comment formatting.
* gcc.c: Fix comment formatting.
* gccspec.c: Likewise.
* gcov.c: Likewise.
* gcse.c: Likewise.
* genemit.c: Likewise.
* gengenrtl.c: Likewise.
* genrecog.c: Likewise.
* gensupport.c: Likewise.
* ggc-page.c: Likewise.
* global.c: Likewise.
* graph.c: Likewise.
* ifcvt.c: Likewise.
* integrate.c: Likewise.
* lcm.c: Likewise.
* libgcc2.c: Likewise.
* loop.c: Likewise.
* mbchar.c: Likewise.
* optabs.c: Likewise.
* predict.c: Likewise.
* prefix.c: Likewise.
* profile.c: Likewise.
* protoize.c: Likewise.
* real.c: Likewise.
* recog.c: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* reg-stack.c: Likewise.
* reload1.c: Likewise.
* resource.c: Likewise.
* rtlanal.c: Likewise.
* rtl.c: Likewise.
From-SVN: r44837
Diffstat (limited to 'gcc/gccspec.c')
-rw-r--r-- | gcc/gccspec.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/gccspec.c b/gcc/gccspec.c index 8576ee0..88072ea 100644 --- a/gcc/gccspec.c +++ b/gcc/gccspec.c @@ -22,7 +22,7 @@ Boston, MA 02111-1307, USA. */ #include "system.h" #include "gcc.h" -/* Filter argc and argv before processing by the gcc driver proper. */ +/* Filter argc and argv before processing by the gcc driver proper. */ void lang_specific_driver (in_argc, in_argv, in_added_libraries) int *in_argc ATTRIBUTE_UNUSED; @@ -92,12 +92,12 @@ lang_specific_driver (in_argc, in_argv, in_added_libraries) #endif } -/* Called before linking. Returns 0 on success and -1 on failure. */ +/* Called before linking. Returns 0 on success and -1 on failure. */ int lang_specific_pre_link () { - return 0; /* Not used for C. */ + return 0; /* Not used for C. */ } -/* Number of extra output files that lang_specific_pre_link may generate. */ -int lang_specific_extra_outfiles = 0; /* Not used for C. */ +/* Number of extra output files that lang_specific_pre_link may generate. */ +int lang_specific_extra_outfiles = 0; /* Not used for C. */ |