|
From: <sv...@va...> - 2012-10-08 10:07:25
|
petarj 2012-10-08 11:07:08 +0100 (Mon, 08 Oct 2012)
New Revision: 13033
Log:
Fix syntax error from r13028.
Typo in r130128 broke the build on MIPS arch.
Modified files:
trunk/cachegrind/cg-arch.c
Modified: trunk/cachegrind/cg-arch.c (+1 -1)
===================================================================
--- trunk/cachegrind/cg-arch.c 2012-10-08 01:09:22 +01:00 (rev 13032)
+++ trunk/cachegrind/cg-arch.c 2012-10-08 11:07:08 +01:00 (rev 13033)
@@ -376,7 +376,7 @@
// 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)
|