re PR libfortran/67140 (undefined reference to _gfortran_mvbits_i16)
authorSteven G. Kargl <kargl@gcc.gnu.org>
Mon, 10 Aug 2015 21:45:01 +0000 (21:45 +0000)
committerSteven G. Kargl <kargl@gcc.gnu.org>
Mon, 10 Aug 2015 21:45:01 +0000 (21:45 +0000)
2015-08-10  Steven G. Kargl  <kargl@gcc.gnu.org>

PR libfortran/67140
* intrinsics/mvbits.c: Fix build for paltforms without c_int128_t.

From-SVN: r226769

libgfortran/ChangeLog
libgfortran/intrinsics/mvbits.c

index dd9143bf845ad047190c12ca4181deb184748f9a..2206c7fe35e2584eec1aea5f8c353921d2b5dd5e 100644 (file)
@@ -1,3 +1,8 @@
+2015-08-10  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       PR libfortran/67140
+       * intrinsics/mvbits.c: Fix build for paltforms without c_int128_t.
+
 2015-08-10  Steven G. Kargl  <kargl@gcc.gnu.org>
 
        PR libfortran/67140
index cb9dd6c30bdc97ca38d0002f354d2d178e03dc4c..b883a2e71e2f1161af5ed771617f286ed5f4974d 100644 (file)
@@ -84,6 +84,7 @@ SUB_NAME (const TYPE *from, const int *frompos, const int *len, TYPE *to,
 #  undef TYPE
 #  undef UTYPE
 
+#if defined (HAVE_GFC_INTEGER_16)
 #  define TYPE GFC_INTEGER_16
 #  define UTYPE GFC_UINTEGER_16
 #  define SUB_NAME mvbits_i16
@@ -92,3 +93,4 @@ SUB_NAME (const TYPE *from, const int *frompos, const int *len, TYPE *to,
 #  undef TYPE
 #  undef UTYPE
 #endif
+#endif