From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25323 invoked by alias); 24 Nov 2008 21:12:39 -0000 Received: (qmail 25230 invoked by uid 22791); 24 Nov 2008 21:12:38 -0000 X-Spam-Check-By: sourceware.org Received: from mail.oarcorp.com (HELO OARmail.OARCORP.com) (216.186.189.5) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 24 Nov 2008 21:11:24 +0000 Received: from [192.168.1.3] (192.168.1.3) by OARmail.OARCORP.com (192.168.2.2) with Microsoft SMTP Server (TLS) id 8.1.311.2; Mon, 24 Nov 2008 15:07:27 -0600 Message-ID: <492B1871.7080409@oarcorp.com> Date: Tue, 25 Nov 2008 02:18:00 -0000 From: Joel Sherrill User-Agent: Thunderbird 2.0.0.18 (X11/20081119) MIME-Version: 1.0 To: "gdb-patches@sourceware.org" Subject: remove warnings in sim/arm Content-Type: multipart/mixed; boundary="------------010808070704060309050207" Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2008-11/txt/msg00668.txt.bz2 --------------010808070704060309050207 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Content-length: 506 Hi, a couple of files in arm/sim had warnings because they did not include . Simple patch to include Ok to commit? 2008-11-24 Joel Sherrill * arminit.c, iwmmxt.c: Include to eliminate warning. -- Joel Sherrill, Ph.D. Director of Research & Development joel.sherrill@OARcorp.com On-Line Applications Research Ask me about RTEMS: a free RTOS Huntsville AL 35805 Support Available (256) 722-9985 --------------010808070704060309050207 Content-Type: text/x-patch; name="arm-sim.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="arm-sim.diff" Content-length: 1053 ? .iwmmxt.c.swp Index: arminit.c =================================================================== RCS file: /cvs/src/src/sim/arm/arminit.c,v retrieving revision 1.12 diff -u -r1.12 arminit.c --- arminit.c 12 May 2005 07:36:58 -0000 1.12 +++ arminit.c 24 Nov 2008 21:08:18 -0000 @@ -15,6 +15,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ +#include + #include "armdefs.h" #include "armemu.h" #include "dbg_rdi.h" Index: iwmmxt.c =================================================================== RCS file: /cvs/src/src/sim/arm/iwmmxt.c,v retrieving revision 1.6 diff -u -r1.6 iwmmxt.c --- iwmmxt.c 1 Jan 2008 22:53:23 -0000 1.6 +++ iwmmxt.c 24 Nov 2008 21:08:19 -0000 @@ -15,6 +15,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ +#include + #include "armdefs.h" #include "armos.h" #include "armemu.h" --------------010808070704060309050207--