Merge "Workaround for test 064 failure" into ics-mr1-plus-art
diff --git a/src/compiler/SSATransformation.cc b/src/compiler/SSATransformation.cc
index 2daa533..bd5f83b 100644
--- a/src/compiler/SSATransformation.cc
+++ b/src/compiler/SSATransformation.cc
@@ -30,7 +30,10 @@
     oatInsertGrowableList(cUnit, &cUnit->dfsOrder, block->id);
 
     if (block->fallThrough) {
+#if 0
+   // Temporary bug workaround
         block->fallThrough->fallThroughTarget = true;
+#endif
         recordDFSOrders(cUnit, block->fallThrough);
     }
     if (block->taken) recordDFSOrders(cUnit, block->taken);