From owner-cvs-src@FreeBSD.ORG Fri Mar 19 20:38:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84A2216A4CE; Fri, 19 Mar 2004 20:38:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65ED643D48; Fri, 19 Mar 2004 20:38:22 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i2K4cMGe082346; Fri, 19 Mar 2004 20:38:22 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i2K4cLlc082345; Fri, 19 Mar 2004 20:38:21 -0800 (PST) (envelope-from marcel) Message-Id: <200403200438.i2K4cLlc082345@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 19 Mar 2004 20:38:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sound/pci vibes.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Mar 2004 04:38:22 -0000 marcel 2004/03/19 20:38:21 PST FreeBSD src repository Modified files: sys/dev/sound/pci vibes.c Log: Actually program the list of recording devices in sv_mix_setrecsrc(). This change has not been tested. This change was triggered by a gcc(1) warning on ia64 at -O2. The variable v was not used after being computed, which resulted in enough dead code elimination (DCE) to confuse the compiler and emit a bogus warning about the use of the variable i without prior definition. The variable i is the loop variable. Submitted by: des Responsibility: marcel Revision Changes Path 1.16 +1 -0 src/sys/dev/sound/pci/vibes.c