about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgifnksm <makoto.nksm+github@gmail.com>2013-08-26 20:27:20 +0900
committergifnksm <makoto.nksm+github@gmail.com>2013-08-26 20:27:20 +0900
commitf8f17a39ceb74cbd55006c389f1925c0e9ed8eab (patch)
tree2ae3e4cfa5feb3884d15c1d2401715012c04dd20
parent084cfc10f5bea02f6bd32856eb2c343692af25c9 (diff)
downloadrust-f8f17a39ceb74cbd55006c389f1925c0e9ed8eab.tar.gz
rust-f8f17a39ceb74cbd55006c389f1925c0e9ed8eab.zip
bigint: fix wrong benchmark fn name
-rw-r--r--src/libextra/num/bigint.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libextra/num/bigint.rs b/src/libextra/num/bigint.rs
index 6c8011f2b9e..9222dea13c4 100644
--- a/src/libextra/num/bigint.rs
+++ b/src/libextra/num/bigint.rs
@@ -2015,7 +2015,7 @@ mod bench {
     }
 
     #[bench]
-    fn fib_500(bh: &mut BenchHarness) {
+    fn fib_100(bh: &mut BenchHarness) {
         do bh.iter { fib(100); }
     }