compiler/benchmarks/PPCBenchmark.st
changeset 524 f6f68d32de73
parent 515 b5316ef15274
child 525 751532c8f3db
--- a/compiler/benchmarks/PPCBenchmark.st	Mon Aug 17 12:13:16 2015 +0100
+++ b/compiler/benchmarks/PPCBenchmark.st	Mon Aug 24 15:34:14 2015 +0100
@@ -250,7 +250,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.
@@ -592,8 +592,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.
@@ -610,8 +609,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.