From 98eb56d711d3397448378886fcb9f0e2f99e5d4a Mon Sep 17 00:00:00 2001 From: cshapiro <cshapiro> Date: Thu, 12 Jul 2007 06:38:28 +0000 Subject: [PATCH] None of the x86 ports need symbol names mangled. Remove the unused conditionalized code. --- code/x86-vm.lisp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/code/x86-vm.lisp b/code/x86-vm.lisp index 03e5368f4..371f797b7 100644 --- a/code/x86-vm.lisp +++ b/code/x86-vm.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/x86-vm.lisp,v 1.24 2007/07/06 08:04:39 cshapiro Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/x86-vm.lisp,v 1.25 2007/07/12 06:38:28 cshapiro Exp $") ;;; ;;; ********************************************************************** ;;; @@ -603,10 +603,7 @@ ;;; (defun extern-alien-name (name) (declare (type simple-string name)) - #+(or elf mach-o) - name - #-(or elf mach-o) - (concatenate 'string "_" name)) + name) #+(and (or linux (and freebsd elf)) (not linkage-table)) (defun lisp::foreign-symbol-address-aux (name flavor) -- GitLab