From: Petar Jovanovic Date: Mon, 8 Oct 2012 10:07:08 +0000 (+0000) Subject: Fix syntax error from r13028. X-Git-Tag: svn/VALGRIND_3_9_0~635 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=110060a9d21de758c9b4eafcaf26bca4448e5ec3;p=thirdparty%2Fvalgrind.git Fix syntax error from r13028. Typo in r130128 broke the build on MIPS arch. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13033 --- diff --git a/cachegrind/cg-arch.c b/cachegrind/cg-arch.c index 747d2dc32f..e48dcaa486 100644 --- a/cachegrind/cg-arch.c +++ b/cachegrind/cg-arch.c @@ -376,7 +376,7 @@ configure_caches(cache_t *I1c, cache_t *D1c, cache_t *LLc, // Set caches to default (for MIPS32-r2(mips 74kc)) *I1c = (cache_t) { 32768, 4, 32 }; *D1c = (cache_t) { 32768, 4, 32 }; - *L2c = (cache_t) { 524288, 8, 32 }; + *LLc = (cache_t) { 524288, 8, 32 }; #elif defined(VGA_x86) || defined(VGA_amd64)