Merge "Add a log message to make the transition from linker to user code clear."

This commit is contained in:
Elliott Hughes 2015-01-23 18:55:29 +00:00 committed by Gerrit Code Review
commit 7f3d65de8c
1 changed files with 2 additions and 0 deletions

View File

@ -2675,6 +2675,8 @@ extern "C" ElfW(Addr) __linker_init(void* raw_args) {
protect_data(PROT_READ); protect_data(PROT_READ);
INFO("[ jumping to _start ]");
// Return the address that the calling assembly stub should jump to. // Return the address that the calling assembly stub should jump to.
return start_address; return start_address;
} }