summaryrefslogtreecommitdiff
path: root/sources/scalac/Global.java
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2003-04-16 15:42:08 +0000
committermihaylov <mihaylov@epfl.ch>2003-04-16 15:42:08 +0000
commitf7308846bb35fd6afc0191a5eacb7f2c4b8c8164 (patch)
tree9dd88775fc36b7708fa140d880755c03e78651a7 /sources/scalac/Global.java
parente1cdc3fe30e6904fceeaf34d4189171266d810f8 (diff)
downloadscala-f7308846bb35fd6afc0191a5eacb7f2c4b8c8164.tar.gz
scala-f7308846bb35fd6afc0191a5eacb7f2c4b8c8164.tar.bz2
scala-f7308846bb35fd6afc0191a5eacb7f2c4b8c8164.zip
- added GenMSIL phase
- removed all references (albeit commented out) to the obsoleted GenJava phase
Diffstat (limited to 'sources/scalac/Global.java')
-rw-r--r--sources/scalac/Global.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/sources/scalac/Global.java b/sources/scalac/Global.java
index 512b803493..0df78993cb 100644
--- a/sources/scalac/Global.java
+++ b/sources/scalac/Global.java
@@ -193,10 +193,7 @@ public class Global {
if (target == TARGET_INT || target == TARGET_MSIL || target == TARGET_JVM) {
phases.add(PHASE.ADDCONSTRUCTORS);
}
- /*
- if (target == TARGET_JAVA) phases.add(PHASE.GENJAVA);
if (target == TARGET_MSIL) phases.add(PHASE.GENMSIL);
- */
if (target == TARGET_JVM) phases.add(PHASE.GENJVM);
phases.add(PHASE.TERMINAL);
this.phases = new PhaseDescriptor[phases.size()];