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]

[commit] symtab.c (iterate_over_some_symtabs): Fix indentation.


Hi.

I happened to be reading this function and noticed this.
It is purely a whitespace change, verified with cvs diff -b.
Committed.

2013-07-29  Doug Evans  <dje@google.com>

	* symtab.c (iterate_over_some_symtabs): Fix indentation.

Index: symtab.c
===================================================================
RCS file: /cvs/src/src/gdb/symtab.c,v
retrieving revision 1.362
diff -u -p -r1.362 symtab.c
--- symtab.c	30 May 2013 17:20:02 -0000	1.362
+++ symtab.c	29 Jul 2013 20:02:30 -0000
@@ -215,35 +215,35 @@ iterate_over_some_symtabs (const char *n
 	  continue;
 	}
 
-    /* Before we invoke realpath, which can get expensive when many
-       files are involved, do a quick comparison of the basenames.  */
-    if (! basenames_may_differ
-	&& FILENAME_CMP (base_name, lbasename (s->filename)) != 0)
-      continue;
-
-    if (compare_filenames_for_search (symtab_to_fullname (s), name))
-      {
-	if (callback (s, data))
-	  return 1;
+      /* Before we invoke realpath, which can get expensive when many
+	 files are involved, do a quick comparison of the basenames.  */
+      if (! basenames_may_differ
+	  && FILENAME_CMP (base_name, lbasename (s->filename)) != 0)
 	continue;
-      }
 
-    /* If the user gave us an absolute path, try to find the file in
-       this symtab and use its absolute path.  */
+      if (compare_filenames_for_search (symtab_to_fullname (s), name))
+	{
+	  if (callback (s, data))
+	    return 1;
+	  continue;
+	}
 
-    if (real_path != NULL)
-      {
-        const char *fullname = symtab_to_fullname (s);
+      /* If the user gave us an absolute path, try to find the file in
+	 this symtab and use its absolute path.  */
 
-	gdb_assert (IS_ABSOLUTE_PATH (real_path));
-	gdb_assert (IS_ABSOLUTE_PATH (name));
-	if (FILENAME_CMP (real_path, fullname) == 0)
-	  {
-	    if (callback (s, data))
-	      return 1;
-	    continue;
-	  }
-      }
+      if (real_path != NULL)
+	{
+	  const char *fullname = symtab_to_fullname (s);
+
+	  gdb_assert (IS_ABSOLUTE_PATH (real_path));
+	  gdb_assert (IS_ABSOLUTE_PATH (name));
+	  if (FILENAME_CMP (real_path, fullname) == 0)
+	    {
+	      if (callback (s, data))
+		return 1;
+	      continue;
+	    }
+	}
     }
 
   return 0;


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