compiler/tests/PPCUniversalOptimizationTest.st
changeset 535 a8feb0f47574
parent 534 a949c4fe44df
child 537 fb212e14d1f4
--- a/compiler/tests/PPCUniversalOptimizationTest.st	Sat Aug 29 07:56:14 2015 +0100
+++ b/compiler/tests/PPCUniversalOptimizationTest.st	Fri Sep 04 14:06:56 2015 +0100
@@ -22,20 +22,12 @@
 setUp
     super setUp.
     
-    configuration := PPCUniversalConfiguration new.
-    configuration context options generate: false.
-    
-"       ^ configuration := PPCPluggableConfiguration on:
-        [ :_self |
-            _self toPPCIr.
-            _self createTokens.
-            _self specialize.
-            _self createRecognizingComponents.
-            _self inline.
-            _self merge.                
-        ]"
+    configuration := PPCConfiguration new.
+    configuration context options 
+        generate: false;
+        tokenize: false.
 
-    "Modified: / 28-08-2015 / 14:22:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 04-09-2015 / 16:21:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !PPCUniversalOptimizationTest methodsFor:'tests'!