summaryrefslogtreecommitdiffstats
path: root/libjava/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/gnu')
-rw-r--r--libjava/gnu/gcj/math/MPN.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/gnu/gcj/math/MPN.java b/libjava/gnu/gcj/math/MPN.java
index 5bbabfdc3fe..6ae60f26a22 100644
--- a/libjava/gnu/gcj/math/MPN.java
+++ b/libjava/gnu/gcj/math/MPN.java
@@ -571,7 +571,7 @@ public class MPN
/** Return least i such that word&(1<<i). Assumes word!=0. */
- static int findLowestBit (int word)
+ public static int findLowestBit (int word)
{
int i = 0;
while ((word & 0xF) == 0)
@@ -591,7 +591,7 @@ public class MPN
/** Return least i such that words & (1<<i). Assumes there is such an i. */
- static int findLowestBit (int[] words)
+ public static int findLowestBit (int[] words)
{
for (int i = 0; ; i++)
{
OpenPOWER on IntegriCloud