mksysinfo: Define _pad128_t and _upad128_t if commented out.
authorIan Lance Taylor <ian@gcc.gnu.org>
Fri, 14 Jan 2011 18:41:31 +0000 (18:41 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Fri, 14 Jan 2011 18:41:31 +0000 (18:41 +0000)
From Rainer Orth.

From-SVN: r168800

libgo/mksysinfo.sh

index 35a461c889c7be9afc937941ad10275779c78d3f..ed6a16444b2253501c0e324e738d4b08987f71f8 100755 (executable)
@@ -250,6 +250,15 @@ else
   exit 1
 fi
 
+# Solaris 2 needs _u?pad128_t, but its default definition in terms of long
+# double is commented by -fdump-go-spec.
+if grep "^// type _pad128_t" gen-sysinfo.go > /dev/null 2>&1; then
+  echo "type _pad128_t struct { _l [4]int32; }" >> ${OUT}
+fi
+if grep "^// type _upad128_t" gen-sysinfo.go > /dev/null 2>&1; then
+  echo "type _upad128_t struct { _l [4]uint32; }" >> ${OUT}
+fi
+
 # The time structures need special handling: we need to name the
 # types, so that we can cast integers to the right types when
 # assigning to the structures.