diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2003-06-20 13:24:55 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2003-06-20 09:24:55 -0400 |
commit | cc550dce3b297e40d4a5ad4fc65c0e2031a07565 (patch) | |
tree | e383b427dcf5deb419d2774a5bfcfd1bce018c84 /gcc | |
parent | 9e21232cfbab2f94d0b08bc348ec1b2ec0fdd68f (diff) | |
download | gcc-cc550dce3b297e40d4a5ad4fc65c0e2031a07565.zip gcc-cc550dce3b297e40d4a5ad4fc65c0e2031a07565.tar.gz gcc-cc550dce3b297e40d4a5ad4fc65c0e2031a07565.tar.bz2 |
* config/alpha/alpha.c (alpha_file_start): Fix typo.
From-SVN: r68264
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/alpha/alpha.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 94c2a2c..8d1006d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-06-20 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> + + * config/alpha/alpha.c (alpha_file_start): Fix typo. + 2003-06-20 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> * config/mips/mips.h (PUT_SDB_FUNCTION_END): Pass 0 as third arg diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 31f03fc..23843bc 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -8684,7 +8684,7 @@ alpha_file_start (void) { default_file_start (); #ifdef MS_STAMP - fprintf (file, "\t.verstamp %d %d\n", MS_STAMP, LS_STAMP); + fprintf (asm_out_file, "\t.verstamp %d %d\n", MS_STAMP, LS_STAMP); #endif fputs ("\t.set noreorder\n", asm_out_file); |