summaryrefslogtreecommitdiff
path: root/gcc/profile.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2002-05-12 10:03:35 -0700
committerRichard Henderson <rth@gcc.gnu.org>2002-05-12 10:03:35 -0700
commit6412341ec950b23d76e52b89f052aab8efeee039 (patch)
treefaf172f00e3f58c6afc1cab99d70fce44d9bcd74 /gcc/profile.c
parente4447d94d9fa82376d1aded4956ec16e5fb558fd (diff)
downloadgcc-6412341ec950b23d76e52b89f052aab8efeee039.tar.gz
profile.h (profile_info): Add missing extern to declaration.
* profile.h (profile_info): Add missing extern to declaration. * profile.c (profile_info): Define it. From-SVN: r53400
Diffstat (limited to 'gcc/profile.c')
-rw-r--r--gcc/profile.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/profile.c b/gcc/profile.c
index 6fa4e12f031..60159a3e322 100644
--- a/gcc/profile.c
+++ b/gcc/profile.c
@@ -79,6 +79,10 @@ struct bb_info
: ((bb) == EXIT_BLOCK_PTR \
? n_basic_blocks + 1 : (bb)->index + 1))
+/* Instantiate the profile info structure. */
+
+struct profile_info profile_info;
+
/* Name and file pointer of the output file for the basic block graph. */
static FILE *bbg_file;