* testsuite/final_layout.sh: Use dc to convert from hex to

decimal.
This commit is contained in:
Ian Lance Taylor 2010-08-02 07:41:04 +00:00
parent 651a8b0448
commit 0c10a0a69f
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-08-02 Ian Lance Taylor <iant@google.com>
* testsuite/final_layout.sh: Use dc to convert from hex to
decimal.
2010-07-29 Sriraman Tallam <tmsriram@google.com> 2010-07-29 Sriraman Tallam <tmsriram@google.com>
* arm.cc (Target_arm<big_endian>::gc_process_relocs): Add template * arm.cc (Target_arm<big_endian>::gc_process_relocs): Add template

View File

@ -27,8 +27,10 @@
check() check()
{ {
func_addr_1=$((16#`grep $2 $1 | awk '{print $1}'`)) func_addr_1=`grep $2 $1 | awk '{print $1}' | tr 'abcdef' 'ABCDEF'`
func_addr_2=$((16#`grep $3 $1 | awk '{print $1}'`)) func_addr_1=`echo 16i${func_addr_1}p | dc`
func_addr_2=`grep $3 $1 | awk '{print $1}' | tr 'abcdef' 'ABCDEF'`
func_addr_2=`echo 16i${func_addr_2}p | dc`
if [ $func_addr_1 -gt $func_addr_2 ] if [ $func_addr_1 -gt $func_addr_2 ]
then then
echo "final layout of" $2 "and" $3 "is not right." echo "final layout of" $2 "and" $3 "is not right."