compiler/tests/PPCOptimizeChoicesTest.st
changeset 529 439c4057517f
parent 452 9f4558b3be66
child 534 a949c4fe44df
--- a/compiler/tests/PPCOptimizeChoicesTest.st	Mon Aug 24 22:32:15 2015 +0100
+++ b/compiler/tests/PPCOptimizeChoicesTest.st	Mon Aug 24 23:42:53 2015 +0100
@@ -16,20 +16,21 @@
 !
 
 setUp
-    | arguments |
+    | options |
     super setUp.
 
     visitor := PPCOptimizeChoices new.
     
-    arguments := PPCArguments default
+    options := PPCCompilationOptions default
         profile: true.
                 
     configuration := PPCPluggableConfiguration on: [ :_self | 
         _self toPPCIr.
         _self cacheFirstFollow.
     ].
-    configuration arguments: arguments.
-    
+    configuration options: options.
+
+    "Modified: / 24-08-2015 / 23:40:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 testHasCommonPrefix