diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-07-09 07:58:10 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-07-09 07:58:10 +0000 |
commit | 452bee5da9811f62123978e142bd67b385e9ff82 (patch) | |
tree | 3da88d3fb1bd2a03897aaac8bb015c12796d2cdf /compiler/image_test.cc | |
parent | c87d27b25994da8670d82a8f7bad6327b693bfff (diff) | |
download | art-452bee5da9811f62123978e142bd67b385e9ff82.zip art-452bee5da9811f62123978e142bd67b385e9ff82.tar.gz art-452bee5da9811f62123978e142bd67b385e9ff82.tar.bz2 |
Revert "ART: Key-Value Store in Oat header"
Broke arm64 build.
This reverts commit c87d27b25994da8670d82a8f7bad6327b693bfff.
Change-Id: I4c2ade295d2b5aa77fc3ad810e0e859629a5bf09
Diffstat (limited to 'compiler/image_test.cc')
-rw-r--r-- | compiler/image_test.cc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/compiler/image_test.cc b/compiler/image_test.cc index 406d9d2..d52ec0a 100644 --- a/compiler/image_test.cc +++ b/compiler/image_test.cc @@ -25,7 +25,6 @@ #include "compiler/image_writer.h" #include "compiler/oat_writer.h" #include "gc/space/image_space.h" -#include "implicit_check_options.h" #include "lock_word.h" #include "mirror/object-inl.h" #include "signal_catcher.h" @@ -78,11 +77,8 @@ TEST_F(ImageTest, WriteRead) { t.NewTiming("WriteElf"); ScopedObjectAccess soa(Thread::Current()); - SafeMap<std::string, std::string> key_value_store; - key_value_store.Put(ImplicitCheckOptions::kImplicitChecksOatHeaderKey, - ImplicitCheckOptions::Serialize(true, true, true)); - OatWriter oat_writer(class_linker->GetBootClassPath(), 0, 0, compiler_driver_.get(), &timings, - &key_value_store); + OatWriter oat_writer(class_linker->GetBootClassPath(), + 0, 0, "", compiler_driver_.get(), &timings); bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(), !kIsTargetBuild, class_linker->GetBootClassPath(), |