aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-12-31 11:20:04 -0500
committerJack Lloyd <[email protected]>2018-12-31 11:20:04 -0500
commitd594fce9591b93fbdfc8079af86a62c1bde55b64 (patch)
treedc30779733896e0361dbb67da3938ee20ff61f0a /src/lib
parent97fc7dcf2c76df21bbd14f06224465fa6820fa69 (diff)
Fixes for XLC
XLC 16 changed which macros are used to identify it. Older versions of XLC didn't work correctly anyway (#1581 #1509 etc), so just drop support for recognizing those versions.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/utils/mul128.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/mul128.h b/src/lib/utils/mul128.h
index 1e2808254..ce1ef693b 100644
--- a/src/lib/utils/mul128.h
+++ b/src/lib/utils/mul128.h
@@ -12,7 +12,7 @@
namespace Botan {
-#if defined(__SIZEOF_INT128__) && defined(BOTAN_TARGET_CPU_HAS_NATIVE_64BIT) && !defined(__xlc__)
+#if defined(__SIZEOF_INT128__) && defined(BOTAN_TARGET_CPU_HAS_NATIVE_64BIT)
#define BOTAN_TARGET_HAS_NATIVE_UINT128
// Prefer TI mode over __int128 as GCC rejects the latter in pendantic mode