Fix syntax error from r13028.
authorpetarj <petarj@a5019735-40e9-0310-863c-91ae7b9d1cf9>
Mon, 8 Oct 2012 10:07:08 +0000 (10:07 +0000)
committerpetarj <petarj@a5019735-40e9-0310-863c-91ae7b9d1cf9>
Mon, 8 Oct 2012 10:07:08 +0000 (10:07 +0000)
Typo in r130128 broke the build on MIPS arch.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13033 a5019735-40e9-0310-863c-91ae7b9d1cf9

cachegrind/cg-arch.c

index 747d2dc32f8043add04765e8c03c600ea6060da7..e48dcaa4869847de7bdfa4fd526c6c8b662f8341 100644 (file)
@@ -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)