[test-suite] r296896 - Reduced iteration count of indirectbr critical-edge-splitting regression test.

Michael Kuperstein via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 3 10:06:39 PST 2017


Author: mkuper
Date: Fri Mar  3 12:06:39 2017
New Revision: 296896

URL: http://llvm.org/viewvc/llvm-project?rev=296896&view=rev
Log:
Reduced iteration count of indirectbr critical-edge-splitting regression test.

Modified:
    test-suite/trunk/SingleSource/Benchmarks/Misc/evalloop.c
    test-suite/trunk/SingleSource/Benchmarks/Misc/evalloop.reference_output

Modified: test-suite/trunk/SingleSource/Benchmarks/Misc/evalloop.c
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/Benchmarks/Misc/evalloop.c?rev=296896&r1=296895&r2=296896&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/Benchmarks/Misc/evalloop.c (original)
+++ test-suite/trunk/SingleSource/Benchmarks/Misc/evalloop.c Fri Mar  3 12:06:39 2017
@@ -112,7 +112,7 @@ int main() {
 
   // Run the interpreter loop over the buffer enough times to get a performance
   // estimate.
-  for (int i = 0; i < 1000000; ++i) {
+  for (int i = 0; i < 100000; ++i) {
     eval(cmds);
   }
   

Modified: test-suite/trunk/SingleSource/Benchmarks/Misc/evalloop.reference_output
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/Benchmarks/Misc/evalloop.reference_output?rev=296896&r1=296895&r2=296896&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/Benchmarks/Misc/evalloop.reference_output (original)
+++ test-suite/trunk/SingleSource/Benchmarks/Misc/evalloop.reference_output Fri Mar  3 12:06:39 2017
@@ -1,2 +1,2 @@
-Sum: 2671228928
+Sum: 3273600000
 exit 0




More information about the llvm-commits mailing list