This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] gdb: btrace: fix indentation style


committed as obvious
-mike

2013-05-06  Mike Frysinger  <vapier@gentoo.org>

	* common/linux-btrace.c (intel_supports_btrace): Fix indentation.

--- gdb/common/linux-btrace.c	11 Mar 2013 08:38:27 -0000	1.2
+++ gdb/common/linux-btrace.c	6 May 2013 17:59:00 -0000
@@ -340,40 +340,40 @@ static int
 intel_supports_btrace (void)
 {
 #if defined __i386__ || defined __x86_64__
-    unsigned int cpuid, model, family;
+  unsigned int cpuid, model, family;
 
-    __asm__ __volatile__ ("movl   $1, %%eax;"
-			  "cpuid;"
-			  : "=a" (cpuid)
-			  :: "%ebx", "%ecx", "%edx");
-
-    family = (cpuid >> 8) & 0xf;
-    model = (cpuid >> 4) & 0xf;
-
-    switch (family)
-      {
-      case 0x6:
-	model += (cpuid >> 12) & 0xf0;
-
-	switch (model)
-	  {
-	  case 0x1a: /* Nehalem */
-	  case 0x1f:
-	  case 0x1e:
-	  case 0x2e:
-	  case 0x25: /* Westmere */
-	  case 0x2c:
-	  case 0x2f:
-	  case 0x2a: /* Sandy Bridge */
-	  case 0x2d:
-	  case 0x3a: /* Ivy Bridge */
-
-	    /* AAJ122: LBR, BTM, or BTS records may have incorrect branch
-	       "from" information afer an EIST transition, T-states, C1E, or
-	       Adaptive Thermal Throttling.  */
-	    return 0;
-	  }
-      }
+  __asm__ __volatile__ ("movl   $1, %%eax;"
+			"cpuid;"
+			: "=a" (cpuid)
+			:: "%ebx", "%ecx", "%edx");
+
+  family = (cpuid >> 8) & 0xf;
+  model = (cpuid >> 4) & 0xf;
+
+  switch (family)
+    {
+    case 0x6:
+      model += (cpuid >> 12) & 0xf0;
+
+      switch (model)
+	{
+	case 0x1a: /* Nehalem */
+	case 0x1f:
+	case 0x1e:
+	case 0x2e:
+	case 0x25: /* Westmere */
+	case 0x2c:
+	case 0x2f:
+	case 0x2a: /* Sandy Bridge */
+	case 0x2d:
+	case 0x3a: /* Ivy Bridge */
+
+	  /* AAJ122: LBR, BTM, or BTS records may have incorrect branch
+	     "from" information afer an EIST transition, T-states, C1E, or
+	     Adaptive Thermal Throttling.  */
+	  return 0;
+	}
+    }
 
   return 1;
 

Attachment: signature.asc
Description: This is a digitally signed message part.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]