2796N/A#!/bin/sh
2796N/A
2796N/A# If we're cross compiling use that path for nm
2796N/Aif [ "$CROSS_COMPILE_ARCH" != "" ]; then
2796N/ANM=$ALT_COMPILER_PATH/nm
2796N/Aelse
2796N/ANM=nm
2796N/Afi
2796N/A
4575N/A$NM -Uj $* | awk '
4575N/A { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 }
2796N/A '