OSDN Git Service

am 762f0a5b: Merge "ART: Clean up compiler"
authorAndreas Gampe <agampe@google.com>
Sat, 23 Aug 2014 06:05:48 +0000 (06:05 +0000)
committerAndroid Git Automerger <android-git-automerger@android.com>
Sat, 23 Aug 2014 06:05:48 +0000 (06:05 +0000)
* commit '762f0a5bdd238458bbb463a9565388f2047a98d4':
  ART: Clean up compiler

1  2 
compiler/dex/frontend.cc

  
  namespace art {
  
- extern "C" void ArtInitQuickCompilerContext(art::CompilerDriver* driver) {
-   CHECK(driver->GetCompilerContext() == nullptr);
- }
- extern "C" void ArtUnInitQuickCompilerContext(art::CompilerDriver* driver) {
-   CHECK(driver->GetCompilerContext() == nullptr);
- }
  /* Default optimizer/debug setting for the compiler. */
  static uint32_t kCompilerOptimizerDisableFlags = 0 |  // Disable specific optimizations
 -  // (1 << kLoadStoreElimination) |
 +  (1 << kLoadStoreElimination) |
    // (1 << kLoadHoisting) |
    // (1 << kSuppressLoads) |
    // (1 << kNullCheckElimination) |