diff options
author | Nick Clifton <nickc@redhat.com> | 2011-06-02 13:43:24 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2011-06-02 13:43:24 +0000 |
commit | cc643b88f142802bf907b2f28ff47c4d1bf55e8b (patch) | |
tree | 5c8a5339fd1d59cb602ea4d452658e69fbe9bad1 /gold | |
parent | 4c422395e61397529b6bbafc7fa5c0e28b4c56dc (diff) | |
download | gdb-cc643b88f142802bf907b2f28ff47c4d1bf55e8b.zip gdb-cc643b88f142802bf907b2f28ff47c4d1bf55e8b.tar.gz gdb-cc643b88f142802bf907b2f28ff47c4d1bf55e8b.tar.bz2 |
Fix spelling mistakes.
Diffstat (limited to 'gold')
-rw-r--r-- | gold/ChangeLog | 7 | ||||
-rw-r--r-- | gold/dynobj.h | 4 | ||||
-rw-r--r-- | gold/output.cc | 2 |
3 files changed, 9 insertions, 4 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index 30f3008..4691aff 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,8 +1,13 @@ +2011-06-02 Nick Clifton <nickc@redhat.com> + + * dynobj.h: Fix spelling mistake in comment. + * output.cc: Likewise. + 2011-05-31 Doug Kwan <dougkwan@google.com> Asier Llano PR gold/12826 - * arm.cc (Target_arm::tag_cpu_arch_combine): Fix handling of + * arm.cc (Target_arm::tag_cpu_arch_combine): Fix handling of arch value that equals to elfcpp::MAX_TAG_CPU_ARCH. * testsuite/Makefile.am: (MOSTLYCLEANFILES): Clean up. Remove redundant arm_exidx_test.so. diff --git a/gold/dynobj.h b/gold/dynobj.h index d26b8a7..1f3243f 100644 --- a/gold/dynobj.h +++ b/gold/dynobj.h @@ -1,6 +1,6 @@ // dynobj.h -- dynamic object support for gold -*- C++ -*- -// Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +// Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. // Written by Ian Lance Taylor <iant@google.com>. // This file is part of gold. @@ -652,7 +652,7 @@ class Versions // Contents of --version-script, if passed, or NULL. const Version_script_info& version_script_; // Whether we need to insert a base version. This is only used for - // shared libaries and is cleared when the base version is defined. + // shared libraries and is cleared when the base version is defined. bool needs_base_version_; }; diff --git a/gold/output.cc b/gold/output.cc index 202d8c2..3f6cb70 100644 --- a/gold/output.cc +++ b/gold/output.cc @@ -479,7 +479,7 @@ Output_file_header::do_write(Output_file* of) } } -// Write out the file header with appropriate size and endianess. +// Write out the file header with appropriate size and endianness. template<int size, bool big_endian> void |