summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/plib/pconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/plib/pconfig.h')
-rw-r--r--src/lib/netlist/plib/pconfig.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/lib/netlist/plib/pconfig.h b/src/lib/netlist/plib/pconfig.h
index 4e116b90344..b719139d73f 100644
--- a/src/lib/netlist/plib/pconfig.h
+++ b/src/lib/netlist/plib/pconfig.h
@@ -22,15 +22,6 @@
#define PUSE_ACCURATE_STATS (0)
#endif
-/// \brief System supports INT128
-///
-/// Set this to one if you want to use 128 bit int for ptime.
-/// This is about 10% slower on a skylake processor for pongf.
-///
-#ifndef PHAS_INT128
-#define PHAS_INT128 (0)
-#endif
-
/// \brief Add support for the __float128 floating point type.
///
#ifndef PUSE_FLOAT128
@@ -137,10 +128,6 @@
#endif
#endif
-#if (PHAS_INT128)
-typedef __uint128_t UINT128;
-typedef __int128_t INT128;
-#endif
#if (PUSE_FLOAT128)
typedef __float128 FLOAT128;