diff -r ebfddc82b8bb -r 439c4057517f compiler/tests/PPCOptimizeChoicesTest.st --- 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 " ! testHasCommonPrefix