am 3df50f57: Merge "Use C99 structure initializer designator style."

* commit '3df50f57e5c106dd70483d4a0a295aa031a5906b':
  Use C99 structure initializer designator style.
This commit is contained in:
Elliott Hughes 2013-10-08 10:05:20 -07:00 committed by Android Git Automerger
commit 24f4da9642

View File

@ -230,68 +230,72 @@ static unsigned gLibDlChains[8] = { 0, 2, 3, 4, 5, 6, 7, 0 };
soinfo libdl_info = { soinfo libdl_info = {
"libdl.so", "libdl.so",
phdr: 0, .phdr = 0,
phnum: 0, .phnum = 0,
entry: 0, .entry = 0,
base: 0, .base = 0,
size: 0, .size = 0,
#if !defined(__LP64__) #if !defined(__LP64__)
unused1: 0, .unused1 = 0,
#endif #endif
dynamic: 0,
.dynamic = 0,
#if !defined(__LP64__) #if !defined(__LP64__)
unused2: 0, unused3: 0, .unused2 = 0, .unused3 = 0,
#endif #endif
next: 0,
flags: FLAG_LINKED, .next = 0,
strtab: ANDROID_LIBDL_STRTAB, .flags = FLAG_LINKED,
symtab: gLibDlSymtab,
nbucket: sizeof(gLibDlBuckets)/sizeof(unsigned), .strtab = ANDROID_LIBDL_STRTAB,
nchain: sizeof(gLibDlChains)/sizeof(unsigned), .symtab = gLibDlSymtab,
bucket: gLibDlBuckets,
chain: gLibDlChains, .nbucket = sizeof(gLibDlBuckets)/sizeof(unsigned),
.nchain = sizeof(gLibDlChains)/sizeof(unsigned),
.bucket = gLibDlBuckets,
.chain = gLibDlChains,
#if defined(ANDROID_X86_64_LINKER) #if defined(ANDROID_X86_64_LINKER)
plt_rela: 0, .plt_rela = 0,
plt_rela_count: 0, .plt_rela_count = 0,
rela: 0, .rela = 0,
rela_count: 0, .rela_count = 0,
#else #else
plt_got: 0, .plt_got = 0,
plt_rel: 0, .plt_rel = 0,
plt_rel_count: 0, .plt_rel_count = 0,
rel: 0, .rel = 0,
rel_count: 0, .rel_count = 0,
#endif #endif
preinit_array: 0, .preinit_array = 0,
preinit_array_count: 0, .preinit_array_count = 0,
init_array: 0, .init_array = 0,
init_array_count: 0, .init_array_count = 0,
fini_array: 0, .fini_array = 0,
fini_array_count: 0, .fini_array_count = 0,
init_func: 0, .init_func = 0,
fini_func: 0, .fini_func = 0,
#if defined(ANDROID_ARM_LINKER) #if defined(ANDROID_ARM_LINKER)
ARM_exidx: 0, .ARM_exidx = 0,
ARM_exidx_count: 0, .ARM_exidx_count = 0,
#elif defined(ANDROID_MIPS_LINKER) #elif defined(ANDROID_MIPS_LINKER)
mips_symtabno: 0, .mips_symtabno = 0,
mips_local_gotno: 0, .mips_local_gotno = 0,
mips_gotsym: 0, .mips_gotsym = 0,
#endif #endif
ref_count: 0, .ref_count = 0,
{ l_addr: 0, l_name: 0, l_ld: 0, l_next: 0, l_prev: 0, }, { .l_addr = 0, .l_name = 0, .l_ld = 0, .l_next = 0, .l_prev = 0, },
constructors_called: false, .constructors_called = false,
load_bias: 0, .load_bias = 0,
has_text_relocations: false, .has_text_relocations = false,
has_DT_SYMBOLIC: true, .has_DT_SYMBOLIC = true,
}; };