diff options
author | 2017-09-21 15:37:55 +0000 | |
---|---|---|
committer | 2017-09-21 15:37:55 +0000 | |
commit | 20e9a7f4ac3b61c1a81653276036e124b19cb8d4 (patch) | |
tree | 0108a2cff437d5f272be78edddfe7f01f8dce2ae /compiler/optimizing/code_generator.cc | |
parent | 1d9f45b5f5e48ffb48ddca3a560bf33fe420b015 (diff) | |
parent | d8dbc8da0e5cc6b5c2176ce2d3877e6194d72c0c (diff) |
Merge "Refactor compiled_method.h ."
Diffstat (limited to 'compiler/optimizing/code_generator.cc')
-rw-r--r-- | compiler/optimizing/code_generator.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index 1e5f1ec00f..6533e2b9f7 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -288,7 +288,8 @@ void CodeGenerator::Finalize(CodeAllocator* allocator) { GetAssembler()->FinalizeInstructions(code); } -void CodeGenerator::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches ATTRIBUTE_UNUSED) { +void CodeGenerator::EmitLinkerPatches( + ArenaVector<linker::LinkerPatch>* linker_patches ATTRIBUTE_UNUSED) { // No linker patches by default. } |