[llvm-commits] CVS: llvm/include/llvm/Support/MathExtras.h

Owen Anderson resistor at mac.com
Thu Mar 1 21:03:24 PST 2007



Changes in directory llvm/include/llvm/Support:

MathExtras.h updated: 1.39 -> 1.40
---
Log message:

Fix a typo.



---
Diffs of the changes:  (+1 -1)

 MathExtras.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/Support/MathExtras.h
diff -u llvm/include/llvm/Support/MathExtras.h:1.39 llvm/include/llvm/Support/MathExtras.h:1.40
--- llvm/include/llvm/Support/MathExtras.h:1.39	Thu Mar  1 15:16:30 2007
+++ llvm/include/llvm/Support/MathExtras.h	Thu Mar  1 23:03:07 2007
@@ -225,7 +225,7 @@
 	                                   47, 5, 32, 65, 38, 14, 22, 11, 58, 18, 53, 63, 9, 61, 27,
 	                                   29, 50, 43, 46, 31, 37, 21, 57, 52, 8, 26, 49, 45, 36, 56,
 	                                   7, 48, 35, 6, 34, 33, 0 };
-	return Mod67Position[(-Value & Value) % 37];
+	return Mod67Position[(-Value & Value) % 67];
 #endif
 }
 






More information about the llvm-commits mailing list