Browse Source

GCC's optimiser seems to screw up if this is left static...

tags/v0.9.3
Michael Brown 17 years ago
parent
commit
f62d6486d8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/arch/i386/core/udivmod64.c

+ 1
- 1
src/arch/i386/core/udivmod64.c View File

@@ -273,7 +273,7 @@ static inline void udivmod64_lo ( const struct uint64 *x,
273 273
 		  : "g" ( d->l ), "0" ( x->l ), "1" ( r_dash ) );
274 274
 }
275 275
 
276
-static void udivmod64 ( const struct uint64 *x,
276
+void udivmod64 ( const struct uint64 *x,
277 277
 			const struct uint64 *d,
278 278
 			struct uint64 *q,
279 279
 			struct uint64 *r ) {

Loading…
Cancel
Save