From 72c3833bfc09be381f28ccbe15321a6c33e10355 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 13 Feb 1996 08:14:58 -0500 Subject: [PATCH] (gen_lowpart): Could return without a value. From-SVN: r11252 --- gcc/emit-rtl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 6b5732d..748bb29 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -1,5 +1,5 @@ /* Emit RTL for the GNU C-Compiler expander. - Copyright (C) 1987, 88, 92, 93, 94, 1995 Free Software Foundation, Inc. + Copyright (C) 1987, 88, 92, 93, 94, 95, 1996 Free Software Foundation, Inc. This file is part of GNU CC. @@ -887,6 +887,7 @@ gen_lowpart (mode, x) result = gen_lowpart_common (mode, copy_to_reg (x)); if (result == 0) abort (); + return result; } else if (GET_CODE (x) == MEM) { -- 2.7.4