compiler/benchmarks/PPCBenchmark.st
changeset 525 751532c8f3db
parent 520 9ccc84deaea0
parent 524 f6f68d32de73
child 529 439c4057517f
--- a/compiler/benchmarks/PPCBenchmark.st	Tue Aug 18 22:46:10 2015 +0100
+++ b/compiler/benchmarks/PPCBenchmark.st	Mon Aug 24 15:56:20 2015 +0100
@@ -259,7 +259,7 @@
 !PPCBenchmark methodsFor:'benchmarks - smalltalk'!
 
 benchmarkOpalCompiler
-    | parser time input |
+    | time  |
     parser := OpalCompiler new.
     input := sources smalltalkSourcesBig.
     time := [ input do: [ :source | parser parse: source ]] timeToRun asMilliseconds.
@@ -666,8 +666,7 @@
 setupSmalltalkGrammarCompiled
 
     configuration := PPCConfiguration universal.
-    configuration arguments parserName: #PPCompiledSmalltalkGrammar.
-    configuration arguments scannerName: #PPCompiledSmalltalkScanner.
+    configuration arguments parserName: #PPSmalltalkGrammarC_Unviersal.
     configuration arguments profile: profile.
     
     parser := PPSmalltalkGrammar new compileWithConfiguration: configuration.
@@ -684,8 +683,8 @@
 setupSmalltalkGrammarTokenized
 
     configuration := PPCConfiguration tokenizing.
-    configuration arguments parserName: #PPTokenizedSmalltalkGrammar.
-    configuration arguments scannerName: #PPTokenizedSmalltalkScanner.
+    configuration arguments parserName: #PPSmalltalkGrammarC_Tokenizing.
+    configuration arguments scannerName: #PPSmalltalkGrammarC_Scanner.
     configuration arguments profile: profile.
     
     parser := PPSmalltalkGrammar new compileWithConfiguration: configuration.