summaryrefslogtreecommitdiffstats
path: root/libpixelflinger/tests
diff options
context:
space:
mode:
authorDuane Sand <duane.sand@imgtec.com>2014-05-22 17:56:16 -0700
committerDuane Sand <duane.sand@imgtec.com>2014-06-03 16:53:12 -0700
commitf1d63bdf0059da2f80478ed61cd6064f806752b0 (patch)
tree31df31f0ada53f569e719c5a1a09d2774e3f9fef /libpixelflinger/tests
parent4e26c95a6363da4885bb9178c9d42c273b357043 (diff)
downloadsystem_core-f1d63bdf0059da2f80478ed61cd6064f806752b0.zip
system_core-f1d63bdf0059da2f80478ed61cd6064f806752b0.tar.gz
system_core-f1d63bdf0059da2f80478ed61cd6064f806752b0.tar.bz2
[MIPS64] Use generic cpu-independent libpixelflinger for mips64
For now, use generic C code instead of generated mips instructions, in the same manner as used on x86 and x86_64 targets. Change-Id: If3607484e0a446a755c62c030b3069d46ab5beb2
Diffstat (limited to 'libpixelflinger/tests')
-rw-r--r--libpixelflinger/tests/codegen/codegen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpixelflinger/tests/codegen/codegen.cpp b/libpixelflinger/tests/codegen/codegen.cpp
index e9f6c61..46c1ccc 100644
--- a/libpixelflinger/tests/codegen/codegen.cpp
+++ b/libpixelflinger/tests/codegen/codegen.cpp
@@ -52,7 +52,7 @@ static void ggl_test_codegen(uint32_t n, uint32_t p, uint32_t t0, uint32_t t1)
GGLAssembler assembler( new ARMAssembler(a) );
#endif
-#if defined(__mips__)
+#if defined(__mips__) && !defined(__LP64__)
GGLAssembler assembler( new ArmToMipsAssembler(a) );
#endif