diff options
author | Brian Carlstrom <bdc@google.com> | 2013-07-26 10:54:15 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-07-26 11:55:10 -0700 |
commit | 7934ac288acfb2552bb0b06ec1f61e5820d924a4 (patch) | |
tree | 43f3acd8af7fd34d4ae7b64f6e06bb8429d74bb8 /compiler/elf_fixup.cc | |
parent | fb331d7ca004f39608fcfdae49d38df90c702ea9 (diff) | |
download | art-7934ac288acfb2552bb0b06ec1f61e5820d924a4.tar.gz art-7934ac288acfb2552bb0b06ec1f61e5820d924a4.tar.bz2 art-7934ac288acfb2552bb0b06ec1f61e5820d924a4.zip |
Fix cpplint whitespace/comments issues
Change-Id: Iae286862c85fb8fd8901eae1204cd6d271d69496
Diffstat (limited to 'compiler/elf_fixup.cc')
-rw-r--r-- | compiler/elf_fixup.cc | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/compiler/elf_fixup.cc b/compiler/elf_fixup.cc index 127bc85d2c..6c090fdbec 100644 --- a/compiler/elf_fixup.cc +++ b/compiler/elf_fixup.cc @@ -62,22 +62,22 @@ bool ElfFixup::Fixup(File* file, uintptr_t oat_data_begin) { } // MIPS seems to break the rules d_val vs d_ptr even though their values are between DT_LOPROC and DT_HIPROC -#define DT_MIPS_RLD_VERSION 0x70000001 // d_val -#define DT_MIPS_TIME_STAMP 0x70000002 // d_val -#define DT_MIPS_ICHECKSUM 0x70000003 // d_val -#define DT_MIPS_IVERSION 0x70000004 // d_val -#define DT_MIPS_FLAGS 0x70000005 // d_val -#define DT_MIPS_BASE_ADDRESS 0x70000006 // d_ptr -#define DT_MIPS_CONFLICT 0x70000008 // d_ptr -#define DT_MIPS_LIBLIST 0x70000009 // d_ptr -#define DT_MIPS_LOCAL_GOTNO 0x7000000A // d_val -#define DT_MIPS_CONFLICTNO 0x7000000B // d_val -#define DT_MIPS_LIBLISTNO 0x70000010 // d_val -#define DT_MIPS_SYMTABNO 0x70000011 // d_val -#define DT_MIPS_UNREFEXTNO 0x70000012 // d_val -#define DT_MIPS_GOTSYM 0x70000013 // d_val -#define DT_MIPS_HIPAGENO 0x70000014 // d_val -#define DT_MIPS_RLD_MAP 0x70000016 // d_ptr +#define DT_MIPS_RLD_VERSION 0x70000001 // d_val +#define DT_MIPS_TIME_STAMP 0x70000002 // d_val +#define DT_MIPS_ICHECKSUM 0x70000003 // d_val +#define DT_MIPS_IVERSION 0x70000004 // d_val +#define DT_MIPS_FLAGS 0x70000005 // d_val +#define DT_MIPS_BASE_ADDRESS 0x70000006 // d_ptr +#define DT_MIPS_CONFLICT 0x70000008 // d_ptr +#define DT_MIPS_LIBLIST 0x70000009 // d_ptr +#define DT_MIPS_LOCAL_GOTNO 0x7000000A // d_val +#define DT_MIPS_CONFLICTNO 0x7000000B // d_val +#define DT_MIPS_LIBLISTNO 0x70000010 // d_val +#define DT_MIPS_SYMTABNO 0x70000011 // d_val +#define DT_MIPS_UNREFEXTNO 0x70000012 // d_val +#define DT_MIPS_GOTSYM 0x70000013 // d_val +#define DT_MIPS_HIPAGENO 0x70000014 // d_val +#define DT_MIPS_RLD_MAP 0x70000016 // d_ptr bool ElfFixup::FixupDynamic(ElfFile& elf_file, uintptr_t base_address) { // TODO: C++0x auto. |