case "$machine" in
arc*)
  base_machine=arc
  machine=arc

  gccfloat=`$CC $CFLAGS $CPPFLAGS -E -dM -xc /dev/null | grep __ARC_FPU_| wc -l`
  if test "$gccfloat" != "0"; then
    with_fp_cond=1
  else
    with_fp_cond=0
  fi
  ;;

esac