aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1997-08-15 20:50:04 +0000
committerJeffrey A Law <law@cygnus.com>1997-08-15 20:50:04 +0000
commit0c1225fb320714d49927785c3479c87df902560e (patch)
tree31f494441f36c355819ea5377868564621728767
parentd77466e7f56a56296e30bcea122bac262b498c79 (diff)
* loop.c (is_conditional_branch): Make definition match declaration.
Found by the sunos compiler git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@14815 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/loop.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3f03b68d786..5afa1deaa82 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -3,6 +3,8 @@ Fri Aug 15 12:49:56 1997 Jeffrey A Law (law@cygnus.com)
* version.c: Change the version string to look like:
egcs-2.90.00 970814 (gcc2-970802 experimental).
+ * loop.c (is_conditional_branch): Make definition match declaration.
+
* gcc.c: Take out experimental snapshot warning message.
Fri Aug 15 13:43:39 1997 Michael Meissner <meissner@cygnus.com>
diff --git a/gcc/loop.c b/gcc/loop.c
index 2c4092d0c85..db89836ca14 100644
--- a/gcc/loop.c
+++ b/gcc/loop.c
@@ -7643,6 +7643,7 @@ is_power_of_2(n)
}
/* return 1 iff insn is a conditional jump */
+static int
is_conditional_branch (insn)
rtx insn;
{