From: Julian Seward Date: Sat, 1 Mar 2014 11:20:33 +0000 (+0000) Subject: Support arm64. X-Git-Tag: svn/VALGRIND_3_10_0~593 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b4c56bb4decaeb8e6d5b5ae7753fe5174d2107e;p=thirdparty%2Fvalgrind.git Support arm64. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13843 --- diff --git a/tests/arch_test.c b/tests/arch_test.c index 849af6e8c7..d1a337bfaa 100644 --- a/tests/arch_test.c +++ b/tests/arch_test.c @@ -60,6 +60,9 @@ static Bool go(char* arch) #elif defined(VGP_arm_linux) if ( 0 == strcmp( arch, "arm" ) ) return True; +#elif defined(VGP_arm64_linux) + if ( 0 == strcmp( arch, "arm64" ) ) return True; + #elif defined(VGP_mips32_linux) if ( 0 == strcmp( arch, "mips32" ) ) return True;