aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@gnu.org>1997-03-28 22:36:13 +0000
committerDoug Evans <dje@gnu.org>1997-03-28 22:36:13 +0000
commita7dbb8b4398c52f476c14b02fb7dc5361ce2dcd6 (patch)
tree45ca3305794ab09fb6afbc1ec844bc523a49f4ea
parent9e2f9a7f6adb8e1e4aa575ce0437fc63708847e1 (diff)
downloadgcc-a7dbb8b4398c52f476c14b02fb7dc5361ce2dcd6.zip
gcc-a7dbb8b4398c52f476c14b02fb7dc5361ce2dcd6.tar.gz
gcc-a7dbb8b4398c52f476c14b02fb7dc5361ce2dcd6.tar.bz2
flags.h (profile_arc_flag, [...]): Declare.
* flags.h (profile_arc_flag, flag_test_coverage, flag_branch_probabilities): Declare. From-SVN: r13814
-rw-r--r--gcc/flags.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/gcc/flags.h b/gcc/flags.h
index df51e52..82c1085 100644
--- a/gcc/flags.h
+++ b/gcc/flags.h
@@ -1,5 +1,5 @@
/* Compilation switch flag definitions for GNU CC.
- Copyright (C) 1987, 1988, 1994, 1995, 1996 Free Software Foundation, Inc.
+ Copyright (C) 1987, 1988, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -133,6 +133,18 @@ extern int profile_flag;
extern int profile_block_flag;
+/* Nonzero if generating code to profile program flow graph arcs. */
+
+extern int profile_arc_flag;
+
+/* Nonzero if generating info for gcov to calculate line test coverage. */
+
+extern int flag_test_coverage;
+
+/* Nonzero indicates that branch taken probabilities should be calculated. */
+
+extern int flag_branch_probabilities;
+
/* Nonzero for -pedantic switch: warn about anything
that standard C forbids. */