diff options
author | Jeff Law <law@gcc.gnu.org> | 1994-08-30 11:56:39 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1994-08-30 11:56:39 -0600 |
commit | 8b2e69e1af41379f1a1c628dfe51b3640c351ea5 (patch) | |
tree | 84ce32f9b7aa6624142bc5c846056f45de457968 /gcc | |
parent | d251be987e3f0613b287c5a712c6ba8d83a27bb3 (diff) | |
download | gcc-8b2e69e1af41379f1a1c628dfe51b3640c351ea5.zip gcc-8b2e69e1af41379f1a1c628dfe51b3640c351ea5.tar.gz gcc-8b2e69e1af41379f1a1c628dfe51b3640c351ea5.tar.bz2 |
* combine.c (simplify_comparison, case GEU): Add missing break.
From-SVN: r8001
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/combine.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index a4913ae..851a48e 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -8834,6 +8834,7 @@ simplify_comparison (code, pop0, pop1) { const_op = 0, op1 = const0_rtx; code = LT; + break; } else break; |