2014-03-17 Christopher Faylor <me.cygwin2014@cgf.cx>
[deliverable/binutils-gdb.git] / gprof / basic_blocks.c
index 20dd7c3b19dba132915b814c8976fe613425be2e..5d35bdfb050872fa060f3e398d728691fa453ec5 100644 (file)
@@ -2,8 +2,7 @@
    of basic-block info to/from gmon.out; computing and formatting of
    basic-block related statistics.
 
-   Copyright 1999, 2000, 2001, 2002, 2004, 2005, 2007
-   Free Software Foundation, Inc.
+   Copyright (C) 1999-2014 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
 
@@ -24,6 +23,7 @@
 \f
 #include "gprof.h"
 #include "libiberty.h"
+#include "filenames.h"
 #include "basic_blocks.h"
 #include "corefile.h"
 #include "gmon_io.h"
@@ -61,7 +61,7 @@ cmp_bb (const PTR lp, const PTR rp)
 
   if (left->file && right->file)
     {
-      r = strcmp (left->file->name, right->file->name);
+      r = filename_cmp (left->file->name, right->file->name);
 
       if (r)
        return r;
This page took 0.024404 seconds and 4 git commands to generate.