]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Replace some 4-space indents with 3-space indents. Merged from DARWIN.
authorNicholas Nethercote <njn@valgrind.org>
Wed, 21 Jan 2009 22:19:26 +0000 (22:19 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Wed, 21 Jan 2009 22:19:26 +0000 (22:19 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9009

cachegrind/cg-x86.c
cachegrind/cg_arch.h

index 76e24d7c90257778436bcfb4567f9a39ec749a91..873c351537380d2239083a836a5b4ea9de5fd84f 100644 (file)
 
 static void micro_ops_warn(Int actual_size, Int used_size, Int line_size)
 {
-    VG_(message)(Vg_DebugMsg, 
-       "warning: Pentium 4 with %d KB micro-op instruction trace cache", 
-       actual_size);
-    VG_(message)(Vg_DebugMsg, 
-       "         Simulating a %d KB I-cache with %d B lines", 
-       used_size, line_size);
+   VG_(message)(Vg_DebugMsg, 
+      "warning: Pentium 4 with %d KB micro-op instruction trace cache", 
+      actual_size);
+   VG_(message)(Vg_DebugMsg, 
+      "         Simulating a %d KB I-cache with %d B lines", 
+      used_size, line_size);
 }
 
 /* Intel method is truly wretched.  We have to do an insane indexing into an
index f771d34656620e4154b9d4eac71f3976ea645e4f..dfa135dc917c696e18846a7752dd40049ca643e5 100644 (file)
@@ -33,9 +33,9 @@
 
 // For cache simulation
 typedef struct {
-    int size;       // bytes
-    int assoc;
-    int line_size;  // bytes
+   int size;       // bytes
+   int assoc;
+   int line_size;  // bytes
 } cache_t;
 
 // Gives the configuration of I1, D1 and L2 caches.  They get overridden