in the arch/alpha directory we should use arch/alpha, not
[gem5.git] / base / intmath.cc
index b9a478ba030330cb50f9613f441e7dd8ad008f67..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
@@ -47,7 +47,7 @@ PrevPrime(int n)
   else if (decr == 1)
     decr = 4;
 
-  for(;;) {
+  for (;;) {
     if (IsPrime(n))
       return n;
     n -= decr;