make/bsd/makefiles/build_vm_def.sh

Tue, 29 Jul 2014 13:56:29 +0200

author
thartmann
date
Tue, 29 Jul 2014 13:56:29 +0200
changeset 7002
a073be2ce5c2
parent 5299
91acb82a8b7a
child 6876
710a3c8b516e
permissions
-rw-r--r--

8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
Summary: Fixed parfait warnings caused by __HI and __LO macros in sharedRuntimeMath.hpp by using a union.
Reviewed-by: kvn

never@3156 1 #!/bin/sh
never@3156 2
never@3156 3 # If we're cross compiling use that path for nm
never@3156 4 if [ "$CROSS_COMPILE_ARCH" != "" ]; then
never@3156 5 NM=$ALT_COMPILER_PATH/nm
never@3156 6 else
never@3156 7 NM=nm
never@3156 8 fi
never@3156 9
dholmes@5299 10 $NM -Uj $* | awk '
dholmes@5299 11 { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 }
never@3156 12 '

mercurial