Reverting SCCP change to division because the system doesn't start.

Temporarily reverting change to allow the system to boot while the
root cause is determined.

Change-Id: Ife1fb6fc99fead9eb72fff8415969fc4955ff7cd
diff --git a/dx/src/com/android/dx/ssa/SCCP.java b/dx/src/com/android/dx/ssa/SCCP.java
index edc1923..14b348f 100644
--- a/dx/src/com/android/dx/ssa/SCCP.java
+++ b/dx/src/com/android/dx/ssa/SCCP.java
@@ -478,6 +478,7 @@
         int opcode = insn.getOpcode().getOpcode();
 
         // TODO: Handle non-int arithmetic.
+        /*
         if (resultType != Type.BT_INT) {
             return;
         }
@@ -490,6 +491,7 @@
             insn = predInsns.get(predInsns.size()-1);
             opcode = insn.getOpcode().getOpcode();
         }
+        */
 
         switch (opcode) {
             case RegOps.CONST: {