From 20463e3e53d6e9e23a7267e08da0e01bf8780fde Mon Sep 17 00:00:00 2001 From: Dmitriy Ivanov Date: Tue, 2 Dec 2014 13:27:40 -0800 Subject: [PATCH] Fix mips build Change-Id: Iddbf06784d19556a55d833e20a68e6ccf5a7c5be --- linker/linker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linker/linker.cpp b/linker/linker.cpp index fcd4824d5..b2e746444 100644 --- a/linker/linker.cpp +++ b/linker/linker.cpp @@ -1760,7 +1760,7 @@ bool soinfo::mips_relocate_got(const soinfo_list_t& global_group, const soinfo_l // got[1] may be used for a GNU extension. // Set it to a recognizable address in case someone calls it (should be _rtld_bind_start). // FIXME: maybe this should be in a separate routine? - if ((flags & FLAG_LINKER) == 0) { + if ((flags_ & FLAG_LINKER) == 0) { size_t g = 0; got[g++] = reinterpret_cast(0xdeadbeef); if (reinterpret_cast(got[g]) < 0) {