Description: further float128 fixes
 .
 cbmc (5.12-2) unstable; urgency=low
 .
   * Fix endianness assumptions in tests
Author: Michael Tautschnig <mt@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2020-04-29

--- cbmc-5.12.orig/regression/ansi-c/gcc_version1/gcc-5.c
+++ cbmc-5.12/regression/ansi-c/gcc_version1/gcc-5.c
@@ -7,4 +7,8 @@ typedef long double _Float128;
 typedef long double _Float128x;
 
 // But this type should:
+// https://gcc.gnu.org/onlinedocs/gcc/Floating-Types.html
+#if defined(__i386__) || defined(__x86_64__) || defined(__ia64__) || \
+    defined(__hppa__) || defined(__powerpc__)
 __float128 f128;
+#endif
--- cbmc-5.12.orig/regression/ansi-c/gcc_version1/gcc-7.c
+++ cbmc-5.12/regression/ansi-c/gcc_version1/gcc-7.c
@@ -6,4 +6,8 @@ _Float64x f64x;
 _Float128 f128;
 _Float128x f128x;
 
+// https://gcc.gnu.org/onlinedocs/gcc/Floating-Types.html
+#if defined(__i386__) || defined(__x86_64__) || defined(__ia64__) || \
+    defined(__hppa__) || defined(__powerpc__)
 __float128 gcc_f128;
+#endif
