Simplify (and robustify) regular PACKing
[sbcl.git] / src / runtime / linux-nm
index f85e7e5..65a870b 100755 (executable)
@@ -1,2 +1,9 @@
 #!/bin/sh
-nm -p "$@" | grep -v " [FUtdb?] "
+
+# " A " used to be in the set of removed symbols, but it turns out
+# that the alpha implementation of closure_tramp and undefined_tramp
+# is as an A.  Whatever that is.  CSR, 2005-06-12.
+# " A " is a global absolute symbol, that is a symbol with a fixed
+# assembly time value (which is used for offset calculations).
+
+nm -p "$@" | GREP_OPTIONS='' grep -v " [abcdgIiNnrstUuvw?-] "