diff options
author | 2014-03-13 09:50:25 +0000 | |
---|---|---|
committer | 2014-03-13 09:50:25 +0000 | |
commit | 896362bbfa11b66b45f3ce5a9e8570a878d49e07 (patch) | |
tree | 270ad482ccb5d0e86dc15c70252e53fb7d7c8c20 /compiler/compilers.cc | |
parent | af7ec0e4efd43aaa58094d036c85736059d9f18d (diff) |
Fix virt-specifiers outside class definition errors.
Change-Id: Iab341e12e7a978aff6bc35117e9b15f3b2c2cedd
Diffstat (limited to 'compiler/compilers.cc')
-rw-r--r-- | compiler/compilers.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/compilers.cc b/compiler/compilers.cc index 3c66021fdf..9bb17199e0 100644 --- a/compiler/compilers.cc +++ b/compiler/compilers.cc @@ -92,7 +92,6 @@ bool QuickCompiler::WriteElf(art::File* file, const std::vector<const art::DexFile*>& dex_files, const std::string& android_root, bool is_host, const CompilerDriver& driver) const - OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { return art::ElfWriterQuick::Create(file, oat_writer, dex_files, android_root, is_host, driver); } @@ -123,8 +122,7 @@ Backend* QuickCompiler::GetCodeGenerator(CompilationUnit* cu, void* compilation_ } std::vector<uint8_t>* QuickCompiler::GetCallFrameInformationInitialization( - const CompilerDriver& driver) const - OVERRIDE { + const CompilerDriver& driver) const { if (driver.GetInstructionSet() == kX86) { return X86CFIInitialization(); } |