summaryrefslogtreecommitdiffstats
path: root/libmemunreachable
diff options
context:
space:
mode:
authordimitry <dimitry@google.com>2017-08-23 10:25:22 +0200
committerdimitry <dimitry@google.com>2017-08-23 20:46:38 +0200
commitb6ba817de4b80ec2430383899b051e86dd2bec27 (patch)
treed89607250656b47a2a55ac2a159e0f640ff84df1 /libmemunreachable
parent7f16cad877571ce8ef0808dcdb81234d61b771ca (diff)
downloadsystem_core-b6ba817de4b80ec2430383899b051e86dd2bec27.tar.gz
system_core-b6ba817de4b80ec2430383899b051e86dd2bec27.tar.bz2
system_core-b6ba817de4b80ec2430383899b051e86dd2bec27.zip
Define current ABI string in android-base/macros.h
Test: make Change-Id: I8200d7b3232edba43a583c5ff1e1b0f78c768f69
Diffstat (limited to 'libmemunreachable')
-rw-r--r--libmemunreachable/MemUnreachable.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/libmemunreachable/MemUnreachable.cpp b/libmemunreachable/MemUnreachable.cpp
index 5e062fde7..24fdc7f37 100644
--- a/libmemunreachable/MemUnreachable.cpp
+++ b/libmemunreachable/MemUnreachable.cpp
@@ -479,23 +479,6 @@ std::string Leak::ToString(bool log_contents) const {
return oss.str();
}
-// Figure out the abi based on defined macros.
-#if defined(__arm__)
-#define ABI_STRING "arm"
-#elif defined(__aarch64__)
-#define ABI_STRING "arm64"
-#elif defined(__mips__) && !defined(__LP64__)
-#define ABI_STRING "mips"
-#elif defined(__mips__) && defined(__LP64__)
-#define ABI_STRING "mips64"
-#elif defined(__i386__)
-#define ABI_STRING "x86"
-#elif defined(__x86_64__)
-#define ABI_STRING "x86_64"
-#else
-#error "Unsupported ABI"
-#endif
-
std::string UnreachableMemoryInfo::ToString(bool log_contents) const {
std::ostringstream oss;
oss << " " << leak_bytes << " bytes in ";