summaryrefslogtreecommitdiffstats
path: root/libpixelflinger/codeflinger/CodeCache.cpp
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2012-08-29 14:06:02 -0700
committerIan Rogers <irogers@google.com>2012-08-29 18:13:14 -0700
commit04b5ac36a50a5fdaf3510c3c4c4e89bc35cfe26e (patch)
treee45ada8e620f33452f28bbfe00390d8c2de79218 /libpixelflinger/codeflinger/CodeCache.cpp
parentaf03b05009863f5d9761864dcec13e4ee6221d69 (diff)
downloadsystem_core-04b5ac36a50a5fdaf3510c3c4c4e89bc35cfe26e.zip
system_core-04b5ac36a50a5fdaf3510c3c4c4e89bc35cfe26e.tar.gz
system_core-04b5ac36a50a5fdaf3510c3c4c4e89bc35cfe26e.tar.bz2
Remove unnecessary compiler pragma.
With dlmalloc 2.8.6 the compiler pragmas to suppress warnings are not necessary. Also fix compiler warning about redefinition of LOG_TAG. Depends upon: https://android-review.googlesource.com/42351 Change-Id: I50f70be31f4bd994b09083e722759464476c70b3
Diffstat (limited to 'libpixelflinger/codeflinger/CodeCache.cpp')
-rw-r--r--libpixelflinger/codeflinger/CodeCache.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/libpixelflinger/codeflinger/CodeCache.cpp b/libpixelflinger/codeflinger/CodeCache.cpp
index 7688290..f9ae00a 100644
--- a/libpixelflinger/codeflinger/CodeCache.cpp
+++ b/libpixelflinger/codeflinger/CodeCache.cpp
@@ -22,13 +22,13 @@
#include <unistd.h>
#include <sys/mman.h>
-#include <cutils/log.h>
#include <cutils/ashmem.h>
#include <cutils/atomic.h>
+#define LOG_TAG "CodeCache"
+#include <cutils/log.h>
-#include "codeflinger/CodeCache.h"
-#define LOG_TAG "CodeCache"
+#include "codeflinger/CodeCache.h"
namespace android {
@@ -63,12 +63,7 @@ static void heap_error(const char* msg, const char* function, void* p);
#define USAGE_ERROR_ACTION(m,p) \
heap_error("ARGUMENT IS INVALID HEAP ADDRESS", __FUNCTION__, p)
-
-#pragma GCC diagnostic ignored "-Wstrict-aliasing"
-#pragma GCC diagnostic ignored "-Wempty-body"
#include "../../../../bionic/libc/upstream-dlmalloc/malloc.c"
-#pragma GCC diagnostic warning "-Wstrict-aliasing"
-#pragma GCC diagnostic warning "-Wempty-body"
static void heap_error(const char* msg, const char* function, void* p) {
ALOG(LOG_FATAL, LOG_TAG, "@@@ ABORTING: CODE FLINGER: %s IN %s addr=%p",