[llvm-commits] [test-suite] r72438 - /test-suite/trunk/SingleSource/Benchmarks/Misc-C++/stepanov_v1p2.cpp
Bob Wilson
bob.wilson at apple.com
Tue May 26 14:44:08 PDT 2009
Author: bwilson
Date: Tue May 26 16:43:43 2009
New Revision: 72438
URL: http://llvm.org/viewvc/llvm-project?rev=72438&view=rev
Log:
Modify this test to avoid spurious diffs.
Modified:
test-suite/trunk/SingleSource/Benchmarks/Misc-C++/stepanov_v1p2.cpp
Modified: test-suite/trunk/SingleSource/Benchmarks/Misc-C++/stepanov_v1p2.cpp
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/Benchmarks/Misc-C%2B%2B/stepanov_v1p2.cpp?rev=72438&r1=72437&r2=72438&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/Benchmarks/Misc-C++/stepanov_v1p2.cpp (original)
+++ test-suite/trunk/SingleSource/Benchmarks/Misc-C++/stepanov_v1p2.cpp Tue May 26 16:43:43 2009
@@ -228,9 +228,9 @@
gmean_ratio += log(result_times[i]/result_times[0]);
}
printf("mean: %5.2fsec %5.2fM %.2f\n",
- exp(STABILIZE(gmean_times/current_test)),
- exp(STABILIZE(gmean_rate/current_test)),
- exp(STABILIZE(gmean_ratio/current_test)));
+ STABILIZE(exp(gmean_times/current_test)),
+ STABILIZE(exp(gmean_rate/current_test)),
+ STABILIZE(exp(gmean_ratio/current_test)));
printf("\nTotal absolute time: %.2f sec\n", STABILIZE(total_absolute_times));
// sam added 12/05/95
printf("\nAbstraction Penalty: %.2f\n\n",
More information about the llvm-commits
mailing list