diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1993-12-10 10:16:00 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1993-12-10 10:16:00 +0000 |
commit | 127447df73db0950b5869c1c9cfd46c9a5f705f8 (patch) | |
tree | fc2764585f249e5e96035749d3914231b5c72433 | |
parent | cc4ca2631378a80e8fd4b28797a4515437e25f93 (diff) | |
download | src-127447df73db0950b5869c1c9cfd46c9a5f705f8.tar.gz src-127447df73db0950b5869c1c9cfd46c9a5f705f8.zip |
makedepend fails for ld. I think it because the .S files are
preprocessed the same as when they are compiled. I just remove the
single-quotes from the offending comments. Rich
Notes
Notes:
svn path=/head/; revision=838
-rw-r--r-- | gnu/usr.bin/ld/i386/mdprologue.S | 6 | ||||
-rw-r--r-- | libexec/rtld-aout/i386/mdprologue.S | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/gnu/usr.bin/ld/i386/mdprologue.S b/gnu/usr.bin/ld/i386/mdprologue.S index 3b7a6dadeb13..23bcb0311bbf 100644 --- a/gnu/usr.bin/ld/i386/mdprologue.S +++ b/gnu/usr.bin/ld/i386/mdprologue.S @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: mdprologue.S,v 1.1 1993/10/16 21:53:16 pk Exp $ + * $Id: mdprologue.S,v 1.2 1993/11/09 04:19:18 paul Exp $ */ /* @@ -70,7 +70,7 @@ _rtl: # crt0 calls us here movl (-FRAME-4)(%ebp), %ebx # restore %ebx leave # remove stack frame, - ret # let's rock + ret # lets rock # First call to a procedure generally comes through here for # binding. @@ -96,7 +96,7 @@ _binder_entry: ret # Special system call stubs which return real and effective user and group - # id's. Saves overhead of making separate calls for each. + # ids. Saves overhead of making separate calls for each. # !! Relies on compatability option in BSD 4.three-and-a-half .globl _getreuid, _getregid diff --git a/libexec/rtld-aout/i386/mdprologue.S b/libexec/rtld-aout/i386/mdprologue.S index 3b7a6dadeb13..23bcb0311bbf 100644 --- a/libexec/rtld-aout/i386/mdprologue.S +++ b/libexec/rtld-aout/i386/mdprologue.S @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: mdprologue.S,v 1.1 1993/10/16 21:53:16 pk Exp $ + * $Id: mdprologue.S,v 1.2 1993/11/09 04:19:18 paul Exp $ */ /* @@ -70,7 +70,7 @@ _rtl: # crt0 calls us here movl (-FRAME-4)(%ebp), %ebx # restore %ebx leave # remove stack frame, - ret # let's rock + ret # lets rock # First call to a procedure generally comes through here for # binding. @@ -96,7 +96,7 @@ _binder_entry: ret # Special system call stubs which return real and effective user and group - # id's. Saves overhead of making separate calls for each. + # ids. Saves overhead of making separate calls for each. # !! Relies on compatability option in BSD 4.three-and-a-half .globl _getreuid, _getregid |