Disable devirtualization detection in DEX-to-DEX compiler.

This CL allows the DEX-to-DEX compiler to disable devirtualization detection.
This allows to quicken invoke-virtual/range instructions that used to be
eligible for devirtualization.

Bug: 10632943
Change-Id: I6c9f4d3249cf42b47f004be5825b3186fa83501e
diff --git a/compiler/llvm/gbc_expander.cc b/compiler/llvm/gbc_expander.cc
index 4f6fa0a..19c8049 100644
--- a/compiler/llvm/gbc_expander.cc
+++ b/compiler/llvm/gbc_expander.cc
@@ -849,7 +849,7 @@
                                                  invoke_type, target_method,
                                                  vtable_idx,
                                                  direct_code, direct_method,
-                                                 true);
+                                                 true, true);
   // Load the method object
   llvm::Value* callee_method_object_addr = NULL;