blob: d9bc273f907cc90c1601a30a49d8418c5cc1e564 [file] [log] [blame]
sewardjb0ccb4d2012-04-02 10:22:05 +00001#!/bin/sh
2
3# We use this script to check whether or not the processor supports Decimal Floating Point (DFP).
4
5LD_SHOW_AUXV=1 /bin/true | grep dfp > /dev/null 2>&1
6if [ "$?" -ne "0" ]; then
7 exit 1
8else
9 exit 0
10fi