in the arch/alpha directory we should use arch/alpha, not
[gem5.git] / base / intmath.cc
index 7a6858d16a96fcf42064dfa1f31841362df3b4af..f84e124fba210bbe5f5134639f0493fdc46cd98f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003 The Regents of The University of Michigan
+ * Copyright (c) 2001, 2003 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -26,7 +26,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include "intmath.hh"
+#include "base/intmath.hh"
 
 int
 PrevPrime(int n)
@@ -47,7 +47,7 @@ PrevPrime(int n)
   else if (decr == 1)
     decr = 4;
 
-  for(;;) {
+  for (;;) {
     if (IsPrime(n))
       return n;
     n -= decr;