Add bool to verifier to allow soft failures.

When false, soft failures in the verifier become hard failures. It should
only be false when not compiling, and calling the verifier from the class
linker.

Change-Id: I664e5cbe491784b280aa5bfdb7e7fc0b771814f5
diff --git a/src/oatdump.cc b/src/oatdump.cc
index 12e93db..cba079a 100644
--- a/src/oatdump.cc
+++ b/src/oatdump.cc
@@ -584,7 +584,7 @@
       mirror::ClassLoader* class_loader = NULL;
       verifier.reset(new verifier::MethodVerifier(dex_file, dex_cache, class_loader, class_def_idx,
                                                   code_item, dex_method_idx, NULL,
-                                                  method_access_flags, true));
+                                                  method_access_flags, true, true));
       verifier->Verify();
       verified_dex_file = dex_file;
       verified_dex_method_idx = dex_method_idx;