Changeset ddcd8cb
- Timestamp:
- May 25, 2011 9:23:40 PM (10 years ago)
- Branches:
- master
- Children:
- 724d8de
- Parents:
- f5f4f14b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
core/java/src/net/i2p/util/NativeBigInteger.java
rf5f4f14b rddcd8cb 114 114 private final static String JBIGI_OPTIMIZATION_PENTIUM4 = "pentium4"; 115 115 private final static String JBIGI_OPTIMIZATION_VIAC3 = "viac3"; 116 /** below here @since 0.8.7 */ 117 private final static String JBIGI_OPTIMIZATION_ATOM = "atom"; 118 private final static String JBIGI_OPTIMIZATION_CORE2 = "core2"; 119 private final static String JBIGI_OPTIMIZATION_COREI = "corei"; 120 private final static String JBIGI_OPTIMIZATION_GEODE = "geode"; 121 private final static String JBIGI_OPTIMIZATION_NANO = "nano"; 122 private final static String JBIGI_OPTIMIZATION_VIAC32 = "viac32"; 116 123 117 124 private static final boolean _isWin = System.getProperty("os.name").startsWith("Win"); … … 550 557 // k62 and k63 identical except on windows 551 558 sAppend = "-" + JBIGI_OPTIMIZATION_K6_2; 559 else if (sCPUType.equals(JBIGI_OPTIMIZATION_VIAC32)) 560 // viac32 and pentium3 identical 561 sAppend = "-" + JBIGI_OPTIMIZATION_PENTIUM3; 552 562 else 553 563 sAppend = "-" + sCPUType;
Note: See TracChangeset
for help on using the changeset viewer.